Int32Rect.Equality(Int32Rect, Int32Rect) 演算子

定義

2 つの四角形を比較し、完全に等しいかどうかを判断します。

public:
 static bool operator ==(System::Windows::Int32Rect int32Rect1, System::Windows::Int32Rect int32Rect2);
public static bool operator == (System.Windows.Int32Rect int32Rect1, System.Windows.Int32Rect int32Rect2);
static member ( = ) : System.Windows.Int32Rect * System.Windows.Int32Rect -> bool
Public Shared Operator == (int32Rect1 As Int32Rect, int32Rect2 As Int32Rect) As Boolean

パラメーター

int32Rect1
Int32Rect

最初に比較する四角形。

int32Rect2
Int32Rect

2 番目に比較する四角形。

戻り値

Boolean

int32Rect1int32Rect2 が同じ XYWidth、および Height を持つ場合は true。それ以外の場合は false

注釈

この演算子の同等のメソッドは次のようになります。 Int32Rect.Equals(Int32Rect, Int32Rect)

適用対象