SizeF::Equals 方法 (gdiplustypes.h)
SizeF::Equals方法會判斷兩個SizeF物件是否相等。
語法
BOOL Equals(
[in, ref] const SizeF & sz
);
參數
[in, ref] sz
類型:const SizeF
與這個 SizeF 物件比較的 SizeF 物件參考。
傳回值
類型: BOOL
如果兩個SizeF物件的Width和Height資料成員相等,這個方法會傳回TRUE;否則會傳回FALSE。
備註
如果Width和Height資料成員相等,則會將兩個SizeF物件定義為相等。
範例
RectF rect(50.0f, 30.0f, 200.0f, 100.0f);
SizeF desiredSizeF(200.0f, 100.0f);
SizeF rectSizeF;
// Get the size of the rectangle.
rect.GetSize(&rectSizeF);
if(rectSizeF.Equals(desiredSizeF))
{
// The rectangle has the wanted size.
}
需求
最低支援的用戶端 | Windows XP、Windows 2000 Professional [僅限傳統型應用程式] |
最低支援的伺服器 | Windows 2000 Server [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | gdiplustypes.h (包含 Gdiplus.h) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |