Spread for ASP.NET 8.0 Product Documentation
IndexOf Method (SheetViewCollection)
Example 


Sheet whose index to return
Gets the index of a specified sheet in the collection.
Syntax
'Declaration
 
Public Function IndexOf( _
   ByVal sheetView As SheetView _
) As Integer
'Usage
 
Dim instance As SheetViewCollection
Dim sheetView As SheetView
Dim value As Integer
 
value = instance.IndexOf(sheetView)
public int IndexOf( 
   SheetView sheetView
)

Parameters

sheetView
Sheet whose index to return

Return Value

Integer index of the sheet in the collection
Example
This example returns the index of the specified sheet.
System.Collections.ArrayList coll = New System.Collections.ArrayList(2);
FarPoint.Web.Spread.SheetView sv2 = New FarPoint.Web.Spread.SheetView();
FarPoint.Web.Spread.SheetView sv3 = New FarPoint.Web.Spread.SheetView();
int i;
sv2.GridLineColor = Color.Red;
sv2.GridLines = GridLines.Vertical;
sv3.GridLineColor = Color.Yellow;
sv3.GridLines = GridLines.Horizontal;
coll.Add(sv2);
coll.Add(sv3);
FpSpread1.Sheets.Clear();
FpSpread1.Sheets.AddRange(coll);

i = FpSpread1.Sheets.IndexOf(sv3);
Response.Write("The index of the specified sheet is " + i.ToString());
Dim coll As New System.Collections.ArrayList(2)
Dim sv2 As New FarPoint.Web.Spread.SheetView
Dim sv3 As New FarPoint.Web.Spread.SheetView
Dim i As Integer
sv2.GridLineColor = Color.Red
sv2.GridLines = GridLines.Vertical
sv3.GridLineColor = Color.Yellow
sv3.GridLines = GridLines.Horizontal
coll.Add(sv2)
coll.Add(sv3)
FpSpread1.Sheets.Clear()
FpSpread1.Sheets.AddRange(coll)

i = FpSpread1.Sheets.IndexOf(sv3)
Response.Write("The index of the specified sheet is " & i.ToString())
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

Reference

SheetViewCollection Class
SheetViewCollection Members

 

 


Copyright © GrapeCity, inc. All rights reserved.