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

シートをコピーする配列
シートの貼り付けを開始する配列インデックス
コレクション内のシートを配列にコピーします。
構文
'Declaration
 
Public Sub CopyTo( _
   ByVal array() As SheetView, _
   ByVal arrayIndex As Integer _
) 
public void CopyTo( 
   SheetView[] array,
   int arrayIndex
)

パラメータ

array
シートをコピーする配列
arrayIndex
シートの貼り付けを開始する配列インデックス
この例では、2つのSheetViewオブジェクトを作成し、それらを現在のシートに追加してからシートを配列にコピーします。
FarPoint.Web.Spread.SheetView[] myarray = new FarPoint.Web.Spread.SheetView[2];
FarPoint.Web.Spread.SheetView sv1 = new FarPoint.Web.Spread.SheetView();
FarPoint.Web.Spread.SheetView sv2 = new FarPoint.Web.Spread.SheetView();
sv1.GridLineColor = Color.Red;
sv1.GridLines = GridLines.Vertical;
sv2.GridLineColor = Color.Yellow;
sv2.GridLines = GridLines.Horizontal;
FpSpread1.Sheets.Add(sv1);
FpSpread1.Sheets.Add(sv2);
FpSpread1.Sheets.CopyTo(myarray, 0);
Dim myarray(2) As FarPoint.Web.Spread.SheetView
Dim sv1 As New FarPoint.Web.Spread.SheetView()
Dim sv2 As New FarPoint.Web.Spread.SheetView()
sv1.GridLineColor = Color.Red
sv1.GridLines = GridLines.Vertical
sv2.GridLineColor = Color.Yellow
sv2.GridLines = GridLines.Horizontal
FpSpread1.Sheets.Add(sv1)
FpSpread1.Sheets.Add(sv2)
FpSpread1.Sheets.CopyTo(myarray, 0)
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


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