Spread Windows Forms 12.0 Product Documentation
DataAreaDefault Field
Example 


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

Field Value

NamedStyle object containing the style
Example
This example checks to see if the DefaultStyleCollection contains the default style for cells in the data area.
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