DrawLine(PointF,PointF,Color,Single,DashStyle) Method
In This Topic
Draws a line between two points, using a specified line color, width and style.
If the value of lineStyle parameter is not DashStyle.Solid, the line is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat.
Syntax
'Declaration
Public Overloads Sub DrawLine( _
ByVal As System.Drawing.PointF, _
ByVal As System.Drawing.PointF, _
ByVal As System.Drawing.Color, _
ByVal As System.Single, _
Optional ByVal As DashStyle _
)
public void DrawLine(
System.Drawing.PointF ,
System.Drawing.PointF ,
System.Drawing.Color ,
System.float ,
DashStyle
)
Parameters
- p1
- The first point.
- p2
- The second point.
- lineColor
- The line color.
- lineWidth
- The line width.
- lineStyle
- The line style (solid by default).
See Also