ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Chart Assembly / GrapeCity.ActiveReports.Chart.Drawing.Drawing2D Namespace / GraphicsPath Class / AddLine Method / AddLine(Single,Single,Single,Single) Method
The x-coordinate of the starting point of the line.
The y-coordinate of the starting point of the line.
The x-coordinate of the endpoint of the line.
The y-coordinate of the endpoint of the line.

In This Topic
    AddLine(Single,Single,Single,Single) Method
    In This Topic
    Appends a line segment to this GraphicsPath.
    Syntax
    'Declaration
     
    Public Overloads Sub AddLine( _
       ByVal x1 As Single, _
       ByVal y1 As Single, _
       ByVal x2 As Single, _
       ByVal y2 As Single _
    ) 
    public void AddLine( 
       float x1,
       float y1,
       float x2,
       float y2
    )

    Parameters

    x1
    The x-coordinate of the starting point of the line.
    y1
    The y-coordinate of the starting point of the line.
    x2
    The x-coordinate of the endpoint of the line.
    y2
    The y-coordinate of the endpoint of the line.
    See Also