MESCIUS SPREAD for Windows Forms 15.0J
RemoveSelection メソッド (SheetView)
使用例 

削除する選択範囲の開始行インデックス
削除する選択範囲の開始列インデックス
削除する選択範囲の行数
削除する選択範囲の列数
このシートから指定した選択範囲を削除します。
構文
'宣言
 
Public Sub RemoveSelection( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
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 メソッド

開発者ガイド

選択領域の処理

 

 


© MESCIUS inc. All rights reserved.