Metodo Rect::IsEmptyArea (gdiplustypes.h)
Il metodo Rect::IsEmptyArea determina se questo rettangolo è vuoto.
Sintassi
BOOL IsEmptyArea();
Valore restituito
Tipo: BOOL
Se il rettangolo è vuoto, questo metodo restituisce TRUE; in caso contrario, restituisce FALSE.
Commenti
Un rettangolo viene definito come vuoto se la larghezza o l'altezza è zero o minore.
Esempio
Nell'esempio seguente viene creato un oggetto Rect , vengono gonfiate le dimensioni del rettangolo e viene determinato se il rettangolo è vuoto.
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.
}
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows XP, Windows 2000 Professional [solo app desktop] |
Server minimo supportato | Windows 2000 Server [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | gdiplustypes.h (include Gdiplus.h) |
Libreria | Gdiplus.lib |
DLL | Gdiplus.dll |