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

追加する先頭セルの行インデックス
追加する先頭セルの列インデックス
追加する行数
追加する列数
選択範囲に1つまたは複数のセルを追加します。
構文
'Declaration
 
Public Overridable Sub AddSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
public virtual void AddSelection( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
追加する先頭セルの行インデックス
column
追加する先頭セルの列インデックス
rowCount
追加する行数
columnCount
追加する列数
この例では、選択の先頭行と先頭列を返します。
FarPoint.Web.Spread.Model.BaseSheetSelectionModel bsm;
int c, r;
bsm = (FarPoint.Web.Spread.Model.BaseSheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
bsm.AddSelection(0, 0, 2, 2);
c = bsm.LeadColumn;
r = bsm.LeadRow; 
Response.Write("The lead column in the selection is " + c.ToString() + " and the lead row is " + r.ToString());
Dim bsm As FarPoint.Web.Spread.Model.BaseSheetSelectionModel
Dim c, r As Integer
bsm = FpSpread1.ActiveSheetView.SelectionModel
bsm.AddSelection(0, 0, 2, 2)
c = bsm.LeadColumn 
r = bsm.LeadRow
Response.Write("The lead column in the selection is " & c.ToString() & " and the lead row is " & r.ToString())
参照

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

 

 


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