InflateRect (Compact 2013)

3/28/2014

This function increases or decreases the width and height of the specified rectangle.

InflateRect adds dx units to the left and right ends of the rectangle and dy units to the top and bottom.

The dx and dy parameters are signed values.

Positive values increase the width and height.

Negative values decrease them.

Syntax

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

Parameters

  • lprc
    Long pointer to the RECT structure that increases or decreases in size.
  • dx
    Specifies the amount to increase or decrease the rectangle width.

    This parameter must be negative to decrease the width.

  • dy
    Specifies the amount to increase or decrease the rectangle height.

    This parameter must be negative to decrease the height.

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
InsetRect
IntersectRect
OffsetRect
UnionRect
RECT