OffsetRect (Compact 2013)

3/28/2014

This function moves the specified rectangle by the specified offsets.

Syntax

BOOL OffsetRect(
  LPRECT lprc, 
  int dx, 
  int dy
);

Parameters

  • lprc
    Long pointer to a RECT structure that contains the logical coordinates of the rectangle to be moved.
  • dx
    Specifies the amount to move the rectangle left or right.

    This parameter must be a negative value to move the rectangle to the left.

  • dy
    Specifies the amount to move the rectangle up or down.

    This parameter must be a negative value to move the rectangle up.

Return Value

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Requirements

Header

winuser.h

Library

Rectapi.lib

See Also

Reference

GDI Functions
InflateRect
IntersectRect
UnionRect
RECT