Important: The information in this document is obsolete and should not be used for new development.
EmptyRect
To determine whether a rectangle is an empty rectangle, use theEmptyRect
function.
FUNCTION EmptyRect (r: Rect): Boolean;
r
- The rectangle to examine.
DESCRIPTION
TheEmptyRect
function returnsTRUE
if the rectangle that you specify in ther
parameter is an empty rectangle,FALSE
if it is not.A rectangle is considered empty if the bottom coordinate is less than or equal to the top coordinate or if the right coordinate is less than or equal to the left.