Spread Windows Forms 6.0 Product Documentation
Styles Field
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DefaultStyleCollection Class : Styles Field


Glossary Item Box

Represents the array of NamedStyle objects containing the default styles.

Syntax

Visual Basic (Declaration) 
Public Shared ReadOnly Styles As NamedStyle()
Visual Basic (Usage)Copy Code
Dim value() As NamedStyle
 
value = DefaultStyleCollection.Styles
C# 
public static readonly NamedStyle[] Styles

Field Value

NamedStyle object containing the style

Example

This example determines whether the collection contains the specified NamedStyle object.
C#Copy Code
FarPoint.Win.Spread.DefaultStyleCollection dsc = new FarPoint.Win.Spread.DefaultStyleCollection();
bool b;
foreach(FarPoint.Win.Spread.NamedStyle style in FarPoint.Win.Spread.DefaultStyleCollection.Styles)
{
listBox1.Items.Add(style.Name);
listBox1.SetSelected(0, true);
b = dsc.Contains(dsc.Find(listBox1.SelectedItem.ToString()));
listBox1.Items.Add(b.ToString());
}
Visual BasicCopy Code
Dim dsc As New FarPoint.Win.Spread.DefaultStyleCollection()
Dim style As FarPoint.Win.Spread.NamedStyle
Dim b As Boolean
For Each style In dsc.Styles
ListBox1.Items.Add(style.Name)
ListBox1.SetSelected(0, True)
b = dsc.Contains(dsc.Find(ListBox1.SelectedItem.ToString()))
ListBox1.Items.Add(b.ToString())
Next

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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