PowerTools SPREAD for Windows Forms 8.0J
RemoveSelection メソッド (SheetView)


削除する選択範囲の開始行インデックス
削除する選択範囲の開始列インデックス
削除する選択範囲の行数
削除する選択範囲の列数
このシートから指定した選択範囲を削除します。
構文
'Declaration
 
Public Sub RemoveSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.RemoveSelection(row, column, rowCount, columnCount)
public void RemoveSelection( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
削除する選択範囲の開始行インデックス
column
削除する選択範囲の開始列インデックス
rowCount
削除する選択範囲の行数
columnCount
削除する選択範囲の列数
次のサンプルコードは、シートから選択範囲と連結セルを削除します。
DialogResult dlg;
fpSpread1.ActiveSheet.AddSpanCell(0, 0, 2, 2);
fpSpread1.ActiveSheet.AddSelection(2, 0, 2, 2);
dlg = MessageBox.Show("Do you want to remove the selection and span cell?", "RemoveSelection/SpanCell", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
    fpSpread1.ActiveSheet.RemoveSelection(2, 0, 2, 2);
    fpSpread1.ActiveSheet.RemoveSpanCell(0, 0);
}
Dim dlg As DialogResult
FpSpread1.ActiveSheet.AddSpanCell(0, 0, 2, 2)
FpSpread1.ActiveSheet.AddSelection(2, 0, 2, 2)
dlg = MessageBox.Show("Do you want to remove the selection and span cell?", "RemoveSelection/SpanCell", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
    FpSpread1.ActiveSheet.RemoveSelection(2, 0, 2, 2)
    FpSpread1.ActiveSheet.RemoveSpanCell(0, 0)
End If
参照

SheetView クラス
SheetView メンバ
AddSelection メソッド
ClearSelection メソッド

開発者ガイド

選択領域の処理

 

 


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