RectF::IsEmptyArea メソッド (gdiplustypes.h)

RectF::IsEmptyArea メソッドは、この四角形が空かどうかを判断します。

構文

BOOL IsEmptyArea();

戻り値

種類: BOOL

四角形が空の場合、このメソッドは TRUE を返します。それ以外の場合は、 FALSE を返します

解説

幅または高さが 0 以下の場合、四角形は空として定義されます。

次の例では、 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

関連項目

Inflate メソッド

ペン、直線、および四角形

Rect

RectF

ペンを使用した直線と四角形の描画