RectF::IsEmptyArea 方法 (gdiplustypes.h)

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

语法

BOOL IsEmptyArea();

返回值

类型: BOOL

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

注解

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

示例

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

VOID Example_IsEmptyArea(HDC hdc)
{
   Graphics graphics(hdc);
   RectF rect(50, 50, 200, 100);
   rect.Inflate(0, -120);

   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

使用笔绘制线条和矩形