SetRect (Compact 2013)

3/28/2014

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.

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 Value

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Requirements

Header

winbase.h

Library

Rectapi.lib

See Also

Reference

GDI Functions
CopyRect
SetRectEmpty
RECT