Spread Windows Forms 10.0 Product Documentation
FilterBarHeaderDefaultStyle Property
Example 


Gets or sets the filter bar header default style of the Spread skin.
Syntax
'Declaration
 
Public Property FilterBarHeaderDefaultStyle As NamedStyle
'Usage
 
Dim instance As SpreadSkin
Dim value As NamedStyle
 
instance.FilterBarHeaderDefaultStyle = value
 
value = instance.FilterBarHeaderDefaultStyle
public NamedStyle FilterBarHeaderDefaultStyle {get; set;}
Example
This example sets the filter bar header style.
FarPoint.Win.Spread.NamedStyle backstyle = new FarPoint.Win.Spread.NamedStyle("NewStyle", "FilterBarHeaderFlat");        
fpSpread1.NamedStyles.Add(backstyle);
FarPoint.Win.Spread.SheetView sheetView = fpSpread1.ActiveSheet;
sheetView.AutoFilterMode = FarPoint.Win.Spread.AutoFilterMode.FilterBar;           
FarPoint.Win.Spread.SpreadSkin skin = new FarPoint.Win.Spread.SpreadSkin();
skin.FilterBarHeaderDefaultStyle = backstyle;
fpSpread1.Skin = skin;
Dim backstyle As New FarPoint.Win.Spread.NamedStyle("NewStyle", "FilterBarHeaderFlat")
FpSpread1.NamedStyles.Add(backstyle)
Dim sheetview As FarPoint.Win.Spread.SheetView = FpSpread1.ActiveSheet
sheetview.AutoFilterMode = FarPoint.Win.Spread.AutoFilterMode.FilterBar
Dim skin As New FarPoint.Win.Spread.SpreadSkin()
skin.FilterBarHeaderDefaultStyle = backstyle
FpSpread1.Skin = skin
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SpreadSkin Class
SpreadSkin Members

 

 


Copyright © GrapeCity, inc. All rights reserved.