PowerTools SPREAD for ASP.NET 8.0J
RemoveSelection メソッド (ISheetSelectionModel)

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

パラメータ

row
範囲の先頭セルの行インデックス
column
範囲の先頭セルの列インデックス
rowCount
選択解除する行数
columnCount
選択解除する列数
FarPoint.Web.Spread.Model.ISheetSelectionModel iss;
iss = (FarPoint.Web.Spread.Model.ISheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
iss.RemoveSelection(0, 0, 2, 2);
Dim iss As FarPoint.Web.Spread.Model.ISheetSelectionModel
iss = FpSpread1.ActiveSheetView.SelectionModel
iss.RemoveSelection(0, 0, 2, 2)
参照

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

 

 


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