Spread Windows Forms 9.0 Product Documentation
HeaderDefault Field
Example 


Represents the default style for header cells.
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.
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

DefaultStyleCollection Class
DefaultStyleCollection Members

 

 


Copyright © GrapeCity, inc. All rights reserved.