Spread ASP.NET 6.0 Product Documentation
IndexOf Method
See Also  Example Send Feedback
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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.