Rect::Equals メソッド (gdiplustypes.h)
Rect::Equals メソッドは、2 つの四角形が同じかどうかを判断します。
構文
BOOL Equals(
[in] const Rect & rect
);
パラメーター
[in] rect
型: const Rect&
この四角形と比較する四角形への参照。
戻り値
種類: BOOL
四角形が同じ場合、このメソッドは TRUE を返します。それ以外の場合は、 FALSE を返します。
注釈
X、Y、Width、Height の各データ メンバーが同じ場合、2 つの四角形は同じです。
例
次の例では、2 つの Rect オブジェクトを作成し、2 番目の Rect オブジェクトを指定した値だけ水平方向に移動し、2 つの Rect オブジェクトが同じかどうかを判断します。
Rect rect1(50, 50, 200, 100);
Rect rect2(20, 50, 200, 100);
rect2.Offset(30, 0);
if(rect2.Equals(rect1))
{
// The two rectangles are the same.
}
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント | Windows XP、Windows 2000 Professional [デスクトップ アプリのみ] |
サポートされている最小のサーバー | Windows 2000 Server [デスクトップ アプリのみ] |
対象プラットフォーム | Windows |
ヘッダー | gdiplustypes.h (Gdiplus.h を含む) |
Library | Gdiplus.lib |
[DLL] | Gdiplus.dll |