PowerTools SPREAD for Windows Forms 8.0J
SelectionCount プロパティ


このシートの選択数を取得します。
構文
'Declaration
 
Public ReadOnly Property SelectionCount As Integer
'使用法
 
Dim instance As SheetView
Dim value As Integer
 
value = instance.SelectionCount
public int SelectionCount {get;}

プロパティ値

シートの選択範囲の数を表す Integer
解説

このプロパティが使用できるのは実行時のみです。

次のサンプルコードでは、このメンバを使用して、シートの選択範囲の数を返しています。
fpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2);
fpSpread1.ActiveSheet.AddSelection(3, 0, 2, 2);
listBox1.Items.Add(fpSpread1.ActiveSheet.SelectionCount.ToString());
FpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2)
FpSpread1.ActiveSheet.AddSelection(3, 0, 2, 2)
ListBox1.Items.Add(FpSpread1.ActiveSheet.SelectionCount.ToString())
参照

SheetView クラス
SheetView メンバ

開発者ガイド

選択

 

 


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