Size::Equals 方法 (gdiplustypes.h)
Size::Equals 方法确定两个 Size 对象是否相等。
语法
BOOL Equals(
[in, ref] const Size & sz
);
parameters
[in, ref] sz
类型: const Size
对 与此 Size 对象进行比较的 Size 对象的引用。
返回值
类型: BOOL
如果两个 Size 对象的 Width 和 Height 数据成员相等,则此方法返回 TRUE;否则返回 FALSE。
注解
如果 Width 和 Height 数据成员相等,则两个 Size 对象定义为相等。
示例
以下示例创建 一个 Rect 对象,获取矩形的大小,并确定矩形是否相等。
Rect rect(50, 30, 200, 100);
Size desiredSize(200, 100);
Size rectSize;
// Get the size of the rectangle.
rect.GetSize(&rectSize);
if(rectSize.Equals(desiredSize))
{
// The rectangle has the desired size.
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplustypes.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |