inflaterect (user32)
Last changed: anonymous

.
Summary
The InflateRect API function increases or decreases the width and height of the specified rectangle. The InflateRect function 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, and negative values decrease them.

C# Signature:

[DllImport("user32.dll")]
static extern bool InflateRect(ref RECT lprc, int dx, int dy);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
InflateRect on MSDN