Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Drawing Namespace / GcGraphics Class / DrawLine Method / DrawLine(PointF,PointF,Color,Single,DashStyle) Method
The first point.
The second point.
The line color.
The line width.
The line style (solid by default).

In This Topic
    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 p1 As System.Drawing.PointF, _
       ByVal p2 As System.Drawing.PointF, _
       ByVal lineColor As System.Drawing.Color, _
       ByVal lineWidth As System.Single, _
       Optional ByVal lineStyle As DashStyle _
    ) 
    public void DrawLine( 
       System.Drawing.PointF p1,
       System.Drawing.PointF p2,
       System.Drawing.Color lineColor,
       System.float lineWidth,
       DashStyle lineStyle
    )

    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