DrawLine(Single,Single,Single,Single,Pen) Method
In This Topic
Draws a line between two points, using the specified pen.
Syntax
'Declaration
Public Overloads Sub DrawLine( _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As Pen _
)
public void DrawLine(
System.float ,
System.float ,
System.float ,
System.float ,
Pen
)
Parameters
- x1
- The X coordinate of the first point.
- y1
- The Y coordinate of the first point.
- x2
- The X coordinate of the second point.
- y2
- The Y coordinate of the second point.
- pen
- The pen to use.
See Also