Spread Windows Forms 12.0 Product Documentation
FilterBarHeaderFlat Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DefaultStyleCollection Class : FilterBarHeaderFlat Field
Represents the flat style for FilterBar header. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly FilterBarHeaderFlat As NamedStyle
'Usage
 
Dim value As NamedStyle
 
value = DefaultStyleCollection.FilterBarHeaderFlat
public static readonly NamedStyle FilterBarHeaderFlat
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
See Also

Reference

DefaultStyleCollection Class
DefaultStyleCollection Members