Visual Basic (Declaration) | |
---|---|
Public Shared ReadOnly HeaderDefault As NamedStyle |
Visual Basic (Usage) | Copy Code |
---|---|
Dim value As NamedStyle value = DefaultStyleCollection.HeaderDefault |
C# | |
---|---|
public static readonly NamedStyle HeaderDefault |
Field Value
NamedStyle object containing the styleNote 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.
This example checks to see if the DefaultStyleCollection contains the default style for headers.
C# | Copy Code |
---|---|
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()); |
Visual Basic | Copy Code |
---|---|
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()) |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8