In This Topic
Draw rectangle with currect stroke and fill.
Syntax
'Declaration
Sub DrawRect( _
ByVal As Double, _
ByVal As Double, _
ByVal As Double, _
ByVal As Double _
)
'Usage
Dim instance As IRenderEngine
Dim x As Double
Dim y As Double
Dim w As Double
Dim h As Double
instance.DrawRect(x, y, w, h)
void DrawRect(
double ,
double ,
double ,
double
)
void DrawRect(
double ,
double ,
double ,
double
)
Parameters
- x
- x-coordinate of rectangle.
- y
- y-coordinate of rectangle.
- w
- Rectangle width.
- h
- Rectangle height.
See Also