Spread for ASP.NET 11 Product Documentation
DefaultHeaderStyle Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FilterBar Class : DefaultHeaderStyle Property
Gets or sets the default header style.
Syntax
'Declaration
 
Public Property DefaultHeaderStyle As StyleInfo
'Usage
 
Dim instance As FilterBar
Dim value As StyleInfo
 
instance.DefaultHeaderStyle = value
 
value = instance.DefaultHeaderStyle
public StyleInfo DefaultHeaderStyle {get; set;}

Property Value

The default header style.
Example
This example sets the DefaultHeaderStyle property.
protected void Page_Load(object sender, System.EventArgs e)
{
if (this.IsPostBack) return;
//Basic Filter Bar
FarPoint.Web.Spread.SheetView sheetView = FpSpread1.ActiveSheetView;
sheetView.AutoFilterMode = FarPoint.Web.Spread.AutoFilterMode.FilterBar;
sheetView.FilterBar.Height = 30;
sheetView.FilterBar.DefaultHeaderStyle.Border = new FarPoint.Web.Spread.Border(Color.Red);
sheetView.FilterBar.DefaultHeaderStyle.BackColor = Color.Yellow;  
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If (IsPostBack) Then
    Return
End If
'Basic Filter Bar
Dim sheetView As FarPoint.Web.Spread.SheetView = FpSpread1.ActiveSheetView
sheetView.AutoFilterMode = FarPoint.Web.Spread.AutoFilterMode.FilterBar
sheetView.FilterBar.Height = 30
sheetView.FilterBar.DefaultHeaderStyle.Border = New FarPoint.Web.Spread.Border(Drawing.Color.Red)
sheetView.FilterBar.DefaultHeaderStyle.BackColor = Drawing.Color.Yellow
End Sub
See Also

Reference

FilterBar Class
FilterBar Members