Spread Windows Forms 12.0 Product Documentation
Item(Int32) Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyleCollection Class : Item(Int32) Property
Index of a named style in the collection (zero based)
Gets or sets the style (NamedStyle object) at the specified index in the collection.
Syntax
'Declaration
 
Public Overridable Property Item( _
   ByVal index As Integer _
) As NamedStyle
'Usage
 
Dim instance As NamedStyleCollection
Dim index As Integer
Dim value As NamedStyle
 
instance.Item(index) = value
 
value = instance.Item(index)
public virtual NamedStyle Item( 
   int index
) {get; set;}

Parameters

index
Index of a named style in the collection (zero based)

Property Value

NamedStyle object containing the style
Exceptions
ExceptionDescription
Specified index is not valid
No value specified; cannot set a member to null
Example
This example gets the named style at the specified index in the collection. (This property is not available in C#. See the example code for how to implement it in C#.)
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();
FarPoint.Win.Spread.NamedStyle ns3 = new FarPoint.Win.Spread.NamedStyle();
ns1.BackColor = Color.LightBlue;
ns2.BackColor = Color.Yellow;
nsc.AddRange(new Object[] {ns1, ns2});
fpSpread1.NamedStyles = nsc;
ns3 = nsc[1];
listBox1.Items.Add(ns3.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()
Dim ns3 As New FarPoint.Win.Spread.NamedStyle()
ns1.BackColor = Color.LightBlue
ns2.BackColor = Color.Yellow
nsc.AddRange(New Object() {ns1, ns2})
FpSpread1.NamedStyles = nsc
ns3 = nsc.Item(1)
ListBox1.Items.Add(ns3.Name)
See Also

Reference

NamedStyleCollection Class
NamedStyleCollection Members