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

行および列がモデルに存在しないかどうかを判断します(この実装は常にfalseを返します)。
構文
'Declaration
 
Public Overridable Function IsEmpty() As Boolean
public virtual bool IsEmpty()

戻り値の型

データを含む行または列がない場合はtrue、それ以外の場合はfalse
この例では、モデルが空かどうかを返します。
FarPoint.Web.Spread.Model.BaseSheetAxisModel b;
bool tf;
b = (FarPoint.Web.Spread.Model.BaseSheetAxisModel)FpSpread1.ActiveSheetView.ColumnAxisModel;
tf = b.IsEmpty();
Response.Write(tf.ToString()); 
Dim b As FarPoint.Web.Spread.Model.BaseSheetAxisModel
Dim tf As Boolean
b = FpSpread1.ActiveSheetView.ColumnAxisModel
tf = b.IsEmpty()
Response.Write(tf.ToString()) 
参照

BaseSheetAxisModel クラス
BaseSheetAxisModel メンバ

 

 


© MESCIUS inc. All rights reserved.