Represents the read-only collection of default styles.
Syntax
Example
This example specifies the first default style in the collection.
C# | Copy Code |
---|
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); |
Visual Basic | Copy Code |
---|
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