Size::Empty 方法 (gdiplustypes.h)
Size::Empty 方法确定 Size 对象是否为空。
语法
BOOL Empty();
返回值
类型: BOOL
如果 Width 和 Height 数据成员都等于零,则此方法返回 TRUE;否则返回 FALSE。
注解
如果 Width 和 Height 数据成员都等于零,则 Size 对象定义为空。
示例
Rect rect(50, 50, 100, 200);
Size size;
rect.Inflate(-50, -100);
rect.GetSize(&size);
if(size.Empty())
{
// The width and height are both 0.
}
要求
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplustypes.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |