MESCIUS SPREAD for ASP.NET 10.0J
Remove メソッド (SheetViewCollection)

削除するシート
指定したシートをコレクションから削除します。
構文
'Declaration
 
Public Sub Remove( _
   ByVal sheetView As SheetView _
) 
public void Remove( 
   SheetView sheetView
)

パラメータ

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.Remove(FpSpread1.ActiveSheetView);
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.Remove(FpSpread1.ActiveSheetView)
FpSpread1.Sheets.Insert(0, sv0)
FpSpread1.Sheets.Insert(1, sv1)
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


© MESCIUS inc. All rights reserved.