Rect::IsEmptyArea 方法 (gdiplustypes.h)

Rect::IsEmptyArea 方法确定此矩形是否为空。

语法

BOOL IsEmptyArea();

返回值

类型: BOOL

如果矩形为空,此方法返回 TRUE;否则返回 FALSE

注解

如果宽度或高度为零或小于零,则矩形定义为空。

示例

以下示例创建 一个 Rect 对象,放大矩形的尺寸,并确定矩形是否为空。

VOID Example_IsEmptyArea(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a Rect object, and inflate the dimensions.
   Rect rect(50, 50, 200, 100);
   rect.Inflate(0, -120);

   // Determine whether the rectangle is empty.
   if(rect.IsEmptyArea())

   // The rectangle does not enclose any area.
}

要求

要求
最低受支持的客户端 Windows XP、Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 gdiplustypes.h (包括 Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

另请参阅

扩充方法

笔、线条和矩形

Rect

RectF

使用笔绘制线条和矩形