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

シートのコレクション
シートの範囲をコレクションに追加します。
構文
'Declaration
 
Public Sub AddRange( _
   ByVal c As ICollection _
) 
public void AddRange( 
   ICollection c
)

パラメータ

c
シートのコレクション
解説

コレクションに1つのシートを追加するには、Addメソッドを使用します。

ICollectionインタフェースの詳細については、Microsoft .NET Frameworkリファレンスを参照してください。

この例では、2シートを作成し、それらを同時にシートのコレクションに追加し、シートの合計数を3(デフォルトで追加されている1シートと、コレクションに追加された2シートから成る)にします。
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();
sv2.GridLineColor = Color.Red;
sv2.GridLines = GridLines.Vertical;
sv3.GridLineColor = Color.Yellow;
sv3.GridLines = GridLines.Horizontal;
coll.Add(sv2);
coll.Add(sv3);
FpSpread1.Sheets.AddRange(coll);
Dim coll As New System.Collections.ArrayList(2)
Dim sv2 As New FarPoint.Web.Spread.SheetView()
Dim sv3 As New FarPoint.Web.Spread.SheetView()
sv2.GridLineColor = Color.Red
sv2.GridLines = GridLines.Vertical
sv3.GridLineColor = Color.Yellow
sv3.GridLines = GridLines.Horizontal
coll.Add(sv2)
coll.Add(sv3)
FpSpread1.Sheets.AddRange(coll)
参照

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

 

 


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