PowerTools SPREAD for ASP.NET 8.0J
Count プロパティ (SheetViewCollection)

コレクション内のシート数を取得または設定します。
構文
'Declaration
 
Public Shadows Property Count As Integer
public new int Count {get; set;}

プロパティ値

コレクション内のシート数を表すInteger
解説
このメソッドは、コレクション内のSheetViewオブジェクトの数をカウントします。
この例では、2シートを作成し、それらをシートのコレクションに追加し、シートの合計数を3(デフォルトで追加されている1シートと、コレクションに追加された2シートから成る)にします。これを検証するため、コレクション内のシート数をリストボックスに返します。
System.Collections.ArrayList coll = new System.Collections.ArrayList(2);
FarPoint.Web.Spread.SheetView sv = new FarPoint.Web.Spread.SheetView();
FarPoint.Web.Spread.SheetView sv1 = new FarPoint.Web.Spread.SheetView();
sv.GridLineColor = Color.Red;
sv.GridLines = GridLines.Vertical;
sv1.GridLineColor = Color.Yellow;
sv1.GridLines = GridLines.Horizontal;
coll.Add(sv);
coll.Add(sv1);
FpSpread1.Sheets.AddRange(coll);
ListBox1.Items.Add(Convert.ToString(FpSpread1.Sheets.Count));
Dim coll As New System.Collections.ArrayList(2)
Dim sv As New FarPoint.Web.Spread.SheetView()
Dim sv1 As New FarPoint.Web.Spread.SheetView()
sv.GridLineColor = Color.Red
sv.GridLines = GridLines.Vertical
sv1.GridLineColor = Color.Yellow
sv1.GridLines = GridLines.Horizontal
coll.Add(sv)
coll.Add(sv1)
FpSpread1.Sheets.AddRange(coll)
ListBox1.Items.Add(FpSpread1.Sheets.Count)
参照

SheetViewCollection クラス
SheetViewCollection メンバ
Add メソッド
AddRange メソッド
CopyTo メソッド

 

 


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