VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / IGraphicsPath Interface / AddBezierCurve(PointF,PointF,PointF,PointF) Method
Syntax Requirements SeeAlso
In This Topic
    AddBezierCurve(PointF,PointF,PointF,PointF) Method (IGraphicsPath)
    In This Topic
    Adds a cubic Bezier curve to the current figure.
    Syntax
    'Declaration
    
    Public Sub AddBezierCurve( _
    ByVal p1
    A System.Drawing.PointF that represents the starting point of the curve.
    As System.Drawing.PointF, _
    ByVal p2
    A System.Drawing.PointF that represents the first control point for the curve.
    As System.Drawing.PointF, _
    ByVal p3
    A System.Drawing.PointF that represents the second control point for the curve.
    As System.Drawing.PointF, _
    ByVal p4
    A System.Drawing.PointF that represents the endpoint of the curve.
    As System.Drawing.PointF _
    )
    public void AddBezierCurve(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2,
    System.Drawing.PointF p3,
    System.Drawing.PointF p4
    )
    public: void AddBezierCurve(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2,
    System.Drawing.PointF p3,
    System.Drawing.PointF p4
    )
    public:
    void AddBezierCurve(
    System.Drawing.PointF p1,
    System.Drawing.PointF p2,
    System.Drawing.PointF p3,
    System.Drawing.PointF p4
    )

    Parameters

    p1
    A System.Drawing.PointF that represents the starting point of the curve.
    p2
    A System.Drawing.PointF that represents the first control point for the curve.
    p3
    A System.Drawing.PointF that represents the second control point for the curve.
    p4
    A System.Drawing.PointF that represents the endpoint of the curve.
    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