MESCIUS SPREAD for ASP.NET 10.0J
Clear メソッド (IRangeSupport)

選択する範囲の先頭行の行インデックス
選択する範囲の先頭列の列インデックス
選択する範囲の行数
選択する範囲の列数
指定したセル範囲内のセルの内容をすべて削除します。
構文
'Declaration
 
Sub Clear( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 

パラメータ

row
選択する範囲の先頭行の行インデックス
column
選択する範囲の先頭列の列インデックス
rowCount
選択する範囲の行数
columnCount
選択する範囲の列数
private void Button1Click(object sender, System.EventArgs e)
{
    FarPoint.Web.Spread.Model.IRangeSupport irs;
    irs = (FarPoint.Web.Spread.Model.IRangeSupport)FpSpread1.ActiveSheetView.DataModel;
    irs.Clear(0, 0, 2, 2);
}
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim irs As FarPoint.Web.Spread.Model.IRangeSupport
    irs = FpSpread1.ActiveSheetView.DataModel
    irs.Clear(0, 0, 2, 2)
End Sub
参照

IRangeSupport インタフェース
IRangeSupport メンバ

 

 


© MESCIUS inc. All rights reserved.