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

シートを挿入する位置のインデックス
挿入するシート
コレクション内の指定の位置に指定のシートを挿入します。
構文
'Declaration
 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal sheetView As SheetView _
) 
public void Insert( 
   int index,
   SheetView sheetView
)

パラメータ

index
シートを挿入する位置のインデックス
sheetView
挿入するシート
この例では、コレクションにシートを挿入します。
FarPoint.Web.Spread.SheetView sv0 = new FarPoint.Web.Spread.SheetView();
FarPoint.Web.Spread.SheetView sv1 = new FarPoint.Web.Spread.SheetView();
sv0.GridLineColor = Color.Red;
sv0.GridLines = GridLines.Vertical;
sv1.GridLineColor = Color.Yellow;
sv1.GridLines = GridLines.Horizontal;
FpSpread1.Sheets.Clear();
FpSpread1.Sheets.Insert(0, sv0);
FpSpread1.Sheets.Insert(1, sv1);
Dim sv0 As New FarPoint.Web.Spread.SheetView
Dim sv1 As New FarPoint.Web.Spread.SheetView
sv0.GridLineColor = Color.Red
sv0.GridLines = GridLines.Vertical
sv1.GridLineColor = Color.Yellow
sv1.GridLines = GridLines.Horizontal
FpSpread1.Sheets.Clear()
FpSpread1.Sheets.Insert(0, sv0)
FpSpread1.Sheets.Insert(1, sv1)
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


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