Spread Windows Forms 7.0 Product Documentation
DefaultStyles Field
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyleCollection Class : DefaultStyles Field


Glossary Item Box

Represents the read-only collection of default styles.

Syntax

Visual Basic (Declaration) 
Public Shared ReadOnly DefaultStyles As DefaultStyleCollection
Visual Basic (Usage)Copy Code
Dim value As DefaultStyleCollection
 
value = NamedStyleCollection.DefaultStyles
C# 
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.
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 BasicCopy 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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.