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


モデルにスタイル設定が含まれていないかどうかを判定します。
構文
'Declaration
 
Public Overridable Function IsEmpty() As Boolean
'使用法
 
Dim instance As BaseSheetStyleModel
Dim value As Boolean
 
value = instance.IsEmpty()
public virtual bool IsEmpty()

戻り値の型

Boolean:スタイル モデルにスタイルが含まれない場合は True、それ以外の場合は False
解説
この実装は常にTrueを返します。
次のサンプルコードでは、このメンバを使用して、モデル内にスタイルが存在するかどうかを返しています。
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel;
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
bool b;
sInfo.BackColor = Color.Red;
fpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo);
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
b = styleModel.IsEmpty();
listBox1.Items.Add(b.ToString());
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
Dim b As Boolean
sInfo.BackColor = Color.Red
styleModel = FpSpread1.ActiveSheet.Models.Style
FpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo)
b = styleModel.IsEmpty()
ListBox1.Items.Add(b.ToString())
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


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