PowerTools SPREAD for Windows Forms 8.0J
RemoveSelection メソッド (DefaultSheetSelectionModel)


範囲の先頭のセルの行インデックス
範囲の先頭のセルの列インデックス
選択解除する行数
選択解除する列数
選択リストがある場合に、選択リストから指定した選択範囲を削除します。
構文
'Declaration
 
Public Overrides Sub RemoveSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'使用法
 
Dim instance As DefaultSheetSelectionModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.RemoveSelection(row, column, rowCount, columnCount)
public override void RemoveSelection( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
範囲の先頭のセルの行インデックス
column
範囲の先頭のセルの列インデックス
rowCount
選択解除する行数
columnCount
選択解除する列数
次のサンプルコードは、指定したセルから選択範囲を削除します。
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection = defselModel;
defselModel.RemoveSelection(0, 0, 3, 3);
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.RemoveSelection(0, 0, 3, 3)
参照

DefaultSheetSelectionModel クラス
DefaultSheetSelectionModel メンバ

 

 


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