Paints the border inside the specified rectangle.
Syntax
'Declaration
Sub Paint( _
ByVal As Graphics, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As IBorder
Dim g As Graphics
Dim x As Integer
Dim y As Integer
Dim width As Integer
Dim height As Integer
instance.Paint(g, x, y, width, height)
void Paint(
Graphics ,
int ,
int ,
int ,
int
)
Parameters
- g
- Graphics to display
- x
- x-coordinate for top-left corner
- y
- y-coordinate for top-left corner
- width
- Width in pixels
- height
- Height in pixels
See Also