FarPoint.Web.Spread 名前空間 > SheetViewCollection クラス : AddRange メソッド |
'Declaration
Public Sub AddRange( _ ByVal c As ICollection _ )
public void AddRange( ICollection c )
コレクションに1つのシートを追加するには、Addメソッドを使用します。
ICollectionインタフェースの詳細については、Microsoft .NET Frameworkリファレンスを参照してください。
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)