PowerTools SPREAD for ASP.NET 8.0J
Remove メソッド (Row)

この行または行範囲を削除します。
構文
'Declaration
 
Public Sub Remove() 
public void Remove()
この例では、ポストバック時に行を削除します。
FarPoint.Web.Spread.Row r;
r = FpSpread1.ActiveSheetView.Rows[0];
if(IsPostBack)
{
     r.Remove();
}
Dim r As FarPoint.Web.Spread.Row
r = FpSpread1.ActiveSheetView.Rows(0)
If IsPostBack Then
     r.Remove()
End If
参照

Row クラス
Row メンバ

 

 


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