VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / GraphicsPathWrapper Class / AddLine(PointF,PointF) Method
Syntax Requirements SeeAlso
In This Topic
    AddLine(PointF,PointF) Method (GraphicsPathWrapper)
    In This Topic
    Appends a line segment to this graphics path.
    Syntax
    'Declaration
    
    Public Overridable Sub AddLine( _
    ByVal p1
    A System.Drawing.PointF that represents the starting point of the line.
    As System.Drawing.PointF, _
    ByVal p2
    A System.Drawing.PointF that represents the endpoint of the line.
    As System.Drawing.PointF _
    )
    public virtual void AddLine(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2
    )
    public: virtual void AddLine(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2
    )
    public:
    virtual void AddLine(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2
    )

    Parameters

    p1
    A System.Drawing.PointF that represents the starting point of the line.
    p2
    A System.Drawing.PointF that represents the endpoint of the line.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also