Spread for ASP.NET 7.0 Product Documentation
IndexOf Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > DefaultStyleCollection Class : IndexOf Method


style
Style (NamedStyle object) for which to search

Glossary Item Box

Returns the index of the specified NamedStyle object.

Syntax

Visual Basic (Declaration) 
Public Function IndexOf( _
   ByVal style As NamedStyle _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As DefaultStyleCollection
Dim style As NamedStyle
Dim value As Integer
 
value = instance.IndexOf(style)
C# 
public int IndexOf( 
   NamedStyle style
)

Parameters

style
Style (NamedStyle object) for which to search

Return Value

Index of the object in the collection, or -1 if the object was not found

Remarks

This method returns the index of the style (NamedStyle object) in the collection of styles.

Example

C#Copy Code
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle();
int i;
int i;    
foreach(FarPoint.Web.Spread.NamedStyle ns in dsc)
{
    i = dsc.IndexOf(ns);
    dsc[i].BackColor = Color.Yellow;
}
Visual BasicCopy Code
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim ns As New FarPoint.Web.Spread.NamedStyle
Dim i As Integer
For Each ns In dsc.Styles
    i = dsc.IndexOf(ns)
    dsc.Item(i).BackColor = Color.Yellow
Next

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

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