PowerTools SPREAD for Windows Forms 8.0J
ExtendSelection メソッド (ISheetSelectionModel)


選択範囲の最後のセルの行インデックス
選択範囲内の最も遠いセルの列インデックス
セルの選択範囲の限度(最後のセル)を指定します。
構文
'Declaration
 
Sub ExtendSelection( _
   ByVal row As Integer, _
   ByVal column As Integer _
) 
'使用法
 
Dim instance As ISheetSelectionModel
Dim row As Integer
Dim column As Integer
 
instance.ExtendSelection(row, column)
void ExtendSelection( 
   int row,
   int column
)

パラメータ

row
選択範囲の最後のセルの行インデックス
column
選択範囲内の最も遠いセルの列インデックス
次のサンプルコードは、選択範囲を追加し、その選択範囲を指定した列および行まで拡張します。
FarPoint.Win.Spread.Model.ISheetSelectionModel sel;
DialogResult dlg;
sel = (FarPoint.Win.Spread.Model.ISheetSelectionModel)fpSpread1.ActiveSheet.Models.Selection;
sel.AddSelection(0, 0, 2, 2);
dlg = MessageBox.Show("Do you want to extend the selection?", "ExtendSelection", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
sel.ExtendSelection(4, 4);
}
Dim sel As FarPoint.Win.Spread.Model.ISheetSelectionModel
Dim dlg As DialogResult
sel = FpSpread1.ActiveSheet.Models.Selection
sel.AddSelection(0, 0, 2, 2)
dlg = MessageBox.Show("Do you want to extend the selection?", "ExtendSelection", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
sel.ExtendSelection(4, 4)
End If
参照

ISheetSelectionModel インタフェース
ISheetSelectionModel メンバ
SetAnchor メソッド
SetSelectionModel

 

 


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