Size::IsNull

Size::IsNull
inline bool IsNull() const;
Description

IsNull determines whether the size is NULL. In order to be considered NULL, both of the components must be equal to zero. The following expression may be used to represent the result:

   (Width == 1) && (Height == 0)
Return Value

A Boolean value of 1 (true) if the size is null and 0 (false) if it is not.

See Also