Spread ASP.NET 6.0 Product Documentation
Theme Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > CommandBarInfo Class : Theme Property


Glossary Item Box

Gets or sets the appearance theme of image buttons on the command bar and pager of a Spread component.

Syntax

Visual Basic (Declaration) 
Public Property Theme As ImageButtonTheme
Visual Basic (Usage)Copy Code
Dim instance As CommandBarInfo
Dim value As ImageButtonTheme
 
instance.Theme = value
 
value = instance.Theme
C# 
public ImageButtonTheme Theme {get; set;}

Remarks

The settings do not apply to the pager if the mode is set to number. The ButtonType property must also be set to image button.

Example

This example sets a theme for the command bar and pager icons.
C#Copy Code
FpSpread1.Sheets[0].RowCount = 20;
FpSpread1.Pager.Mode = FarPoint.Web.Spread.PagerMode.NextPrev;
FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.ImageButton;
FpSpread1.Pager.ButtonType = FarPoint.Web.Spread.ButtonType.ImageButton;
FpSpread1.CommandBar.Theme = FarPoint.Web.Spread.ImageButtonTheme.Xp;
Visual BasicCopy Code
FpSpread1.Sheets(0).RowCount = 20
FpSpread1.Pager.Mode = FarPoint.Web.Spread.PagerMode.NextPrev
FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.ImageButton
FpSpread1.Pager.ButtonType = FarPoint.Web.Spread.ButtonType.ImageButton
FpSpread1.CommandBar.Theme = FarPoint.Web.Spread.ImageButtonTheme.Xp

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.