PowerTools SPREAD for ASP.NET 8.0J
IndexOf メソッド (SheetViewCollection)

インデックスを取得するシート
コレクション内の指定のシートのインデックスを取得します。
構文
'Declaration
 
Public Function IndexOf( _
   ByVal sheetView As SheetView _
) As Integer
public int IndexOf( 
   SheetView sheetView
)

パラメータ

sheetView
インデックスを取得するシート

戻り値の型

コレクション内のシートのインデックスを表すInteger
この例では、指定したシートのインデックスを返します。
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())
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.