In This Topic
Enlarges a Rectangle structure by the specified amount.
Syntax
'Declaration
Public Sub Inflate( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As Rect
Dim width As Integer
Dim height As Integer
instance.Inflate(width, height)
public void Inflate(
int ,
int
)
Parameters
- width
- The amount to inflate this Rect horizontally.
- height
- The amount to inflate this Rect vertically.
See Also