Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Drawing Namespace / IPath Interface / 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 (IPath)
    In This Topic
    Creates a cubic Bezier curve between the current point and the specified end point.
    Syntax
    'Declaration
     
    Sub AddBezier( _
       ByVal p1 As System.Drawing.PointF, _
       ByVal p2 As System.Drawing.PointF, _
       ByVal endPoint As System.Drawing.PointF _
    ) 
    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