Spread for ASP.NET 8.0 Product Documentation
Theme Property
Example 


Gets or sets the appearance theme of image buttons on the command bar and pager of a Spread component.
Syntax
'Declaration
 
Public Property Theme As ImageButtonTheme
'Usage
 
Dim instance As CommandBarInfo
Dim value As ImageButtonTheme
 
instance.Theme = value
 
value = instance.Theme
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.
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;
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 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

CommandBarInfo Class
CommandBarInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.