SizeF::Equals 方法 (gdiplustypes.h)
SizeF::Equals 方法确定两个 SizeF 对象是否相等。
语法
BOOL Equals(
[in, ref] const SizeF & sz
);
parameters
[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) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |