MESCIUS SPREAD for ASP.NET 10.0J
Contains メソッド (SheetViewCollection)

指定のシートがコレクション内に存在するかどうかを指定します。
オーバーロード一覧
オーバーロード説明
Contains(SheetView)指定のシートがコレクション内に存在するかどうかを指定します。  
Contains(String)指定のシートがコレクション内に存在するかどうかを指定します。  
この例では、コレクションに指定したシートがを含まれるかどうかを返します。
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();
bool b;
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);

b = FpSpread1.Sheets.Contains(sv2);
Response.Write("Is the specified sheet in the collection is " + b.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 b As Boolean
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)

b = FpSpread1.Sheets.Contains(sv2)
Response.Write("Is the specified sheet in the collection is " & b.ToString())
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


© MESCIUS inc. All rights reserved.