Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
RECT Structure
                                              Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  typedef struct tagRECT {
     int left;
     int top;
     int right;
     int bottom;
  } RECT;
 
  The RECT structure defines the coordinates of the upper-left and
  lower-right corners of a rectangle.
 
  Member   Description
 
  left     Specifies the x-coordinate of the upper-left corner of a
           rectangle.
 
  top      Specifies the y-coordinate of the upper-left corner of a
           rectangle.
 
  right    Specifies the x-coordinate of the lower-right corner of a
           rectangle.
 
  bottom   Specifies the y-coordinate of the lower-right corner of a
           rectangle.
 
  Comments
 
  The width of the rectangle defined by the RECT structure must not exceed
  32,767 units.
 
 
                                     -♦-