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


モデルにいずれかのスタイルが設定されているかどうかを判定します。
構文
'Declaration
 
Function IsEmpty() As Boolean
'使用法
 
Dim instance As ISheetStyleModel
Dim value As Boolean
 
value = instance.IsEmpty()
bool IsEmpty()

戻り値の型

Boolean:モデルにスタイル設定が含まれない場合は True、それ以外の場合は False
次のサンプルコードは、モデルにスタイルが設定されているかどうかを返します。
FarPoint.Win.Spread.Model.ISheetStyleModel ssm;
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleData");
FarPoint.Win.Spread.StyleInfo si;
bool b;
ssm = (FarPoint.Win.Spread.Model.ISheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
ns.BackColor = Color.Yellow;
fpSpread1.NamedStyles.Add(ns);
ssm.SetDirectInfo(0, 0, ns);
b = ssm.IsEmpty();
label1.Text = "Is the model empty of styles =  " + b.ToString();
Dim ssm As FarPoint.Win.Spread.Model.ISheetStyleModel
Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleData")
Dim si As FarPoint.Win.Spread.StyleInfo
Dim b As Boolean
ssm = FpSpread1.ActiveSheet.Models.Style
ns.BackColor = Color.Yellow
FpSpread1.NamedStyles.Add(ns)
ssm.SetDirectInfo(0, 0, ns)
b = ssm.IsEmpty()
Label1.Text = "Is the model empty of styles =  " & b.ToString()
参照

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

 

 


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