Document Solutions for PDF
DS.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GcBitmapGraphics.Path Class / AddBezier Method
The first control point for the Bezier segment.
The second control point for the Bezier segment.
The end point for the Bezier segment.

In This Topic
    AddBezier Method (GcBitmapGraphics.Path)
    In This Topic
    Creates a cubic Bezier curve between the current point and the specified end point.
    Syntax
    'Declaration
     
    Public Sub AddBezier( _
       ByVal p1 As System.Drawing.PointF, _
       ByVal p2 As System.Drawing.PointF, _
       ByVal endPoint As System.Drawing.PointF _
    ) 
    public void AddBezier( 
       System.Drawing.PointF p1,
       System.Drawing.PointF p2,
       System.Drawing.PointF endPoint
    )

    Parameters

    p1
    The first control point for the Bezier segment.
    p2
    The second control point for the Bezier segment.
    endPoint
    The end point for the Bezier segment.
    See Also