Spread Windows Forms 12.0 Product Documentation
HeaderDefault Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DefaultStyleCollection Class : HeaderDefault Field
Represents the default style for header cells. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly HeaderDefault As NamedStyle
'Usage
 
Dim value As NamedStyle
 
value = DefaultStyleCollection.HeaderDefault
public static readonly NamedStyle HeaderDefault

Field Value

NamedStyle object containing the style
Example
This example checks to see if the DefaultStyleCollection contains the default style for headers.
FarPoint.Win.Spread.DefaultStyleCollection dsc = new FarPoint.Win.Spread.DefaultStyleCollection();
bool b, b1;
b = dsc.Contains(FarPoint.Win.Spread.DefaultStyleCollection.DataAreaDefault);
b1 = dsc.Contains(FarPoint.Win.Spread.DefaultStyleCollection.HeaderDefault);
listBox1.Items.Add(b.ToString());
listBox1.Items.Add(b1.ToString());
Dim dsc As New FarPoint.Win.Spread.DefaultStyleCollection()
Dim b, b1 As Boolean
b = dsc.Contains(dsc.DataAreaDefault)
b1 = dsc.Contains(dsc.HeaderDefault)
ListBox1.Items.Add(b.ToString())
ListBox1.Items.Add(b1.ToString())
Remarks
Note that if you set properties for DefaultStyleCollection.DataAreaDefault or DefaultStyleCollection.HeaderDefault, they affect all Spread controls on the system because these objects are static, and thus shared by all Spread controls on all Windows Forms in all applications. If you need to set it only for a particular sheet, you should set SheetView.DefaultStyle (for cells in the data area) or SheetView.ColumnHeader.DefaultStyle or SheetView.RowHeader.DefaultStyle properties (for cells in the headers) so that only the sheet is affected.
See Also

Reference

DefaultStyleCollection Class
DefaultStyleCollection Members