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

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

パラメータ

row
範囲の先頭セルの行インデックス
column
範囲の先頭セルの列インデックス
rowCount
選択解除する行数
columnCount
選択解除する列数
この例では、モデルから選択をクリアします。
FarPoint.Web.Spread.Model.BaseSheetSelectionModel bsm;
bsm = (FarPoint.Web.Spread.Model.BaseSheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
bsm.AddSelection(0, 0, 2, 2);
bsm.AddSelection(1, 1, 3, 3);

Response.Write("<script>alert('Remove Selection?')</script>");
bsm.RemoveSelection(1, 1, 3, 3);
Dim bsm As FarPoint.web.Spread.Model.BaseSheetSelectionModel
bsm = FpSpread1.ActiveSheetView.SelectionModel
bsm.AddSelection(0, 0, 1, 2)
bsm.AddSelection(1, 1, 3, 3)

Response.Write("<script>alert('Remove Selection?')</script>")
bsm.RemoveSelection(1, 1, 3, 3)
参照

BaseSheetSelectionModel クラス
BaseSheetSelectionModel メンバ
AddSelection メソッド
ClearSelection メソッド
SetSelection メソッド

 

 


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