MESCIUS SPREAD for ASP.NET 10.0J
IsDefined メソッド (Border)

BorderProperty クラスの境界線設定
指定したプロパティが設定されているかどうかを判定します。
構文
'Declaration
 
Public Overridable Function IsDefined( _
   ByVal prop As BorderProperty _
) As Boolean
public virtual bool IsDefined( 
   BorderProperty prop
)

パラメータ

prop
BorderProperty クラスの境界線設定

戻り値の型

プロパティが設定されている場合は True、それ以外の場合は False
解説
このメソッドを使用し、任意のBorderプロパティがオブジェクトの境界線に設定されているかどうかをチェックします。プロパティのリストについては、Borderクラスのメンバのページを参照してください。
この例では、Borderオブジェクトを作成し、いくつかのプロパティを設定した後、BorderColorBottomプロパティが定義されているかどうかを問い合わせ、その結果をテキストボックスに返します。
FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
bool bl;
acell = FpSpread1.Cells[0, 0];
border.BorderColorBottom = Color.Red;
border.BorderColorRight = Color.Green;
border.BorderSize = 2;
bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom);
acell.Border = border;
TextBox1.Text = Convert.ToString(bl);
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
Dim bl As Boolean
acell = FpSpread1.Cells(0, 0)
border.BorderColorBottom = Color.Red
border.BorderColorRight = Color.Green
border.BorderSize = 2
bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom)
acell.Border = border
TextBox1.Text = bl
参照

Border クラス
Border メンバ
BorderProperty クラス

 

 


© MESCIUS inc. All rights reserved.