Spread Windows Forms 12.0 Product Documentation
DefaultStyles Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyleCollection Class : DefaultStyles Field
Represents the read-only collection of default styles. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly DefaultStyles As DefaultStyleCollection
'Usage
 
Dim value As DefaultStyleCollection
 
value = NamedStyleCollection.DefaultStyles
public static readonly DefaultStyleCollection DefaultStyles

Field Value

DefaultStyleCollection object containing the collection of default styles
Example
This example specifies the first default style in the collection.
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection();
FarPoint.Win.Spread.NamedStyle ns1 = new FarPoint.Win.Spread.NamedStyle();
FarPoint.Win.Spread.NamedStyle ns2 = new FarPoint.Win.Spread.NamedStyle();
ns1.BackColor = Color.LightBlue;
ns2.BackColor = Color.Yellow;
nsc.AddRange(new Object[] {ns1, ns2});
fpSpread1.NamedStyles = nsc;
listBox1.Items.Add(FarPoint.Win.Spread.NamedStyleCollection.DefaultStyles[0].Name); 
Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection()
Dim ns1 As New FarPoint.Win.Spread.NamedStyle()
Dim ns2 As New FarPoint.Win.Spread.NamedStyle()
ns1.BackColor = Color.LightBlue
ns2.BackColor = Color.Yellow
FpSpread1.NamedStyles = nsc
ListBox1.Items.Add(nsc.DefaultStyles(0).Name)
See Also

Reference

NamedStyleCollection Class
NamedStyleCollection Members