[C#]
void Inflate(int width, int height);
static Rectangle Inflate(Rectangle rect, int x, int y);
void Inflate(Size sz);
[Visual Basic]
Sub Inflate(width As Integer, height As Integer)
Shared Function Inflate(rect As Rectangle, x As Integer, y As Integer) As Rectangle
Sub Inflate(sz As Size)
|