MESCIUS SPREAD for ASP.NET 10.0J
IsEmpty プロパティ (Inset)

いずれの余白も設定されていないかどうか(すべての値が0かどうか)を判別します。
構文
'Declaration
 
Public Overridable ReadOnly Property IsEmpty As Boolean
public virtual bool IsEmpty {get;}

プロパティ値

空の場合はtrue、それ以外の場合はfalse
解説
このプロパティは実行時のみ使用できます。
この例では、インセットが空かどうかを返します。
FarPoint.Web.Spread.Inset inset = New FarPoint.Web.Spread.Inset(); 
inset.Left = 35; 
inset.Top = 5; 
inset.Right = 5; 
inset.Bottom = 35; 
FpSpread1.ActiveSheetView.Cells(0, 0).Margin = inset; 
bool b;
b = inset.IsEmpty();
Response.Write(b.ToString());
Dim inset As New FarPoint.Web.Spread.Inset
inset.Left = 35
inset.Top = 5
inset.Right = 5
inset.Bottom = 35
FpSpread1.ActiveSheetView.Cells(0, 0).Margin = inset
Dim b As Boolean
b = inset.IsEmpty()
Response.Write(b.ToString())
参照

Inset クラス
Inset メンバ

 

 


© MESCIUS inc. All rights reserved.