In This Topic
Draw line between two points using current stroke attributes.
Syntax
'Declaration
Sub DrawLine( _
ByVal As Double, _
ByVal As Double, _
ByVal As Double, _
ByVal As Double _
)
'Usage
Dim instance As IRenderEngine
Dim x1 As Double
Dim y1 As Double
Dim x2 As Double
Dim y2 As Double
instance.DrawLine(x1, y1, x2, y2)
void DrawLine(
double ,
double ,
double ,
double
)
void DrawLine(
double ,
double ,
double ,
double
)
Parameters
- x1
- x-coordinate of first point.
- y1
- y-coordinate of first point.
- x2
- x-coordinate of second point.
- y2
- y-coordinate of second point.
See Also