MESCIUS SPREAD for Windows Forms 15.0J
RemoveSelection メソッド (DefaultSheetSelectionModel)
使用例 

範囲の先頭のセルの行インデックス
範囲の先頭のセルの列インデックス
選択解除する行数
選択解除する列数
選択リストがある場合に、選択リストから指定した選択範囲を削除します。
構文
'宣言
 
Public Overrides Sub RemoveSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
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 メンバ

 

 


© MESCIUS inc. All rights reserved.