Spread Windows Forms 8.0 Product Documentation
DefaultStyles Field
Example 


Represents the read-only collection of default styles.
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)
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

Reference

NamedStyleCollection Class
NamedStyleCollection Members

 

 


Copyright © GrapeCity, inc. All rights reserved.