This function sets the coordinates of the specified rectangle. This is equivalent to assigning the left, top, right, and bottom arguments to the appropriate members of the RECT structure.
At a Glance
Header file: | Winuser.h |
Windows CE versions: | 1.0 and later |
Syntax
BOOL SetRect(LPRECT lprc, int xLeft, int yTop, int xRight, int yBottom);
Parameters
lprc
Long pointer to the RECT structure that contains the rectangle to be set.
xLeft
Specifies the x-coordinate of the rectangle’s upper-left corner.
yTop
Specifies the y-coordinate of the rectangle’s upper-left corner.
xRight
Specifies the x-coordinate of the rectangle’s lower-right corner.
yBottom
Specifies the y-coordinate of the rectangle’s lower-right corner.
Return Values
Nonzero indicates success. Zero indicates failure.
To get extended error information, call GetLastError.
See Also