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


モデルに選択が含まれていないかどうかを判定します。
構文
'Declaration
 
Function IsEmpty() As Boolean
'使用法
 
Dim instance As ISheetSelectionModel
Dim value As Boolean
 
value = instance.IsEmpty()
bool IsEmpty()

戻り値の型

Boolean:セル結合がない場合は True、それ以外の場合は False
次のサンプルコードは、モデルに選択範囲が含まれていないかどうかを返します。
FarPoint.Win.Spread.Model.ISheetSelectionModel sel;
bool b;
sel = (FarPoint.Win.Spread.Model.ISheetSelectionModel)fpSpread1.ActiveSheet.Models.Selection;
sel.AddSelection(0, 0, 4, 4);
b = sel.IsEmpty();
label1.Text = "Are there any selections in the model = " + b.ToString();
Dim sel As FarPoint.Win.Spread.Model.ISheetSelectionModel
Dim b As Boolean
sel = FpSpread1.ActiveSheet.Models.Selection
sel.AddSelection(0, 0, 4, 4)
b = sel.IsEmpty()
Label1.Text = "Are there any selections in the model = " & b.ToString()
参照

ISheetSelectionModel インタフェース
ISheetSelectionModel メンバ

 

 


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