RECTL structure (windef.h)

The RECTL structure defines a rectangle by the coordinates of its upper-left and lower-right corners.

Syntax

typedef struct _RECTL {
  LONG left;
  LONG top;
  LONG right;
  LONG bottom;
} RECTL, *PRECTL, *LPRECTL;

Members

left

Specifies the x-coordinate of the upper-left corner of the rectangle.

top

Specifies the y-coordinate of the upper-left corner of the rectangle.

right

Specifies the x-coordinate of the lower-right corner of the rectangle.

bottom

Specifies the y-coordinate of the lower-right corner of the rectangle.

Remarks

The RECTL structure is identical to the RECT structure.

Requirements

Requirement Value
Header windef.h (include Windows.h)

See also

RECT