PowerTools SPREAD for Windows Forms 8.0J
Clear メソッド (DefaultSheetDataModel)


クリアする範囲の開始行インデックス
クリアする範囲の開始列インデックス
クリアする行数
クリアする列数
指定したセル範囲からすべてのデータと数式を削除します。
構文
'Declaration
 
Public Sub Clear( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'使用法
 
Dim instance As DefaultSheetDataModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.Clear(row, column, rowCount, columnCount)
public void Clear( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
クリアする範囲の開始行インデックス
column
クリアする範囲の開始列インデックス
rowCount
クリアする行数
columnCount
クリアする列数
次のサンプルコードは、指定した行および列からすべてのデータと数式を削除します。
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.Clear(0, 0, 3, 3);
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.Clear(0, 0, 3, 3)
参照

DefaultSheetDataModel クラス
DefaultSheetDataModel メンバ
ClearData メソッド
ClearFormulas メソッド

 

 


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