InflateRect Function
Declaration
Private Declare Function InflateRect Lib "user32" Alias "InflateRect" (lpRect As RECT, ByVal x As Long, ByVal y As Long) As Long
Description of Function
This functions increases or decreases the size of a rectangle referred to by lpRect. It's width will be increased by x units, and it's height will be increased by y units.
Parameter Type / Description
lpRect RECT / Rectangle to inflate.
x Long / Inflate width by x units.
y Long / Inflate height by y units.
Return Value
Long / Nonzero on success, Zero on failure.
|