MESCIUS SPREAD for ASP.NET 10.0J
Equals(Inset) メソッド

Insetオブジェクト
現在のオブジェクトのインセットが指定したInsetオブジェクトと同じであるかどうかを判定します。
構文
'Declaration
 
Public Overloads Function Equals( _
   ByVal inset As Inset _
) As Boolean
public bool Equals( 
   Inset inset
)

パラメータ

inset
Insetオブジェクト

戻り値の型

インセットが等しい場合はtrue、それ以外の場合はfalse
この例では、2つのInsetオブジェクトを作成し、1番目のオブジェクトの設定を2番目にコピーします。次に、Insetオブジェクトの2番目のインスタンスが1番目のインスタンスと等しいかどうかを問い合わせ、その結果をテキストボックスに返します。
Dim inset As New FarPoint.Web.Spread.Inset()
Dim clone As New FarPoint.Web.Spread.Inset()
Dim bl As Boolean
inset.Bottom = 35
inset.Left = 35
inset.Right = 5
inset.Top = 5
clone.Bottom = inset.Bottom
clone.Left = inset.Left
clone.Right = inset.Right
clone.Top = inset.Top
bl = clone.Equals(inset)
TextBox1.Text = bl
FarPoint.Web.Spread.Inset inset = new FarPoint.Web.Spread.Inset();
FarPoint.Web.Spread.Inset clone = new FarPoint.Web.Spread.Inset();
bool bl;
inset.Bottom = 35;
inset.Left = 35;
inset.Right = 5;
inset.Top = 5;
clone.Bottom = inset.Bottom;
clone.Left = inset.Left;
clone.Right = inset.Right;
clone.Top = inset.Top;
bl = clone.Equals(inset);
TextBox1.Text = Convert.ToString(bl);
参照

Inset クラス
Inset メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.