Draws a double line connecting the two points specified by the coordinate pairs.
Syntax
'Declaration
Public Shared Sub DrawDoubleLine( _
ByVal As Graphics, _
ByVal As Pen, _
ByVal As Single, _
ByVal As Single, _
ByVal As Single, _
ByVal As Single _
)
public static void DrawDoubleLine(
Graphics ,
Pen ,
float ,
float ,
float ,
float
)
Parameters
- g
- The graphics to draw on.
- pen
- System.Drawing.Pen that determines the color, width, and style of the line.
- 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.
See Also