CRect::IsRectNull
Bestimmt, ob alle oben, unten links, und Rechtwerte von CRect gleich 0.
BOOL IsRectNull( ) const throw( );
Rückgabewert
Ungleich 0 (null), wenn die top-, left-, bottom- und right-Werte von CRect alle gleich 0 sind; andernfalls 0.
Hinweise
Unterscheidet sich von IsRectEmpty, das bestimmt, ob das Rechteck leer ist.
Beispiel
CRect rectNone(0, 0, 0, 0);
CRect rectSome(35, 50, 135, 150);
ASSERT(rectNone.IsRectNull());
ASSERT(!rectSome.IsRectNull());
// note that null means _all_ zeros
CRect rectNotNull(0, 0, 35, 50);
ASSERT(!rectNotNull.IsRectNull());
Anforderungen
Header: atltypes.h