Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
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.
 
 
                                     -♦-