MESCIUS SPREAD for ASP.NET 10.0J
IsEmpty メソッド (BaseSheetStyleModel)

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

戻り値の型

モデルがデータを持たない場合はtrue、それ以外の場合はfalse
解説
この実装は常にTrueを返します。
次のサンプルコードは、モデルにスタイル設定がないかどうかを返します。
FarPoint.Web.Spread.Model.BaseSheetStyleModel bs;
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
si.BackColor = Color.Yellow;
bs = (FarPoint.Web.Spread.Model.BaseSheetStyleModel)FpSpread1.ActiveSheetView.StyleModel;
bs.SetDirectInfo(0, 0, si);
bool b;
b = bs.IsEmpty();
Response.Write(b.ToString());
Dim bs As FarPoint.Web.Spread.Model.BaseSheetStyleModel
Dim si As New FarPoint.Web.Spread.StyleInfo
si.BackColor = Color.Yellow
bs = FpSpread1.ActiveSheetView.StyleModel
bs.SetDirectInfo(0, 0, si)
Dim b As Boolean
b = bs.IsEmpty()
Response.Write(b.ToString())
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


© MESCIUS inc. All rights reserved.