Spread Windows Forms 18
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Drawing Namespace / IGeometry Interface / QuadraticBezierTo Method
The control point of the cubic Bezier curve.
The end point of the cubic Bezier curve.


In This Topic
    QuadraticBezierTo Method
    In This Topic
    Draw a quadratic Bezier curve along the specified points.
    Syntax
    'Declaration
     
    
    Sub QuadraticBezierTo( _
       ByVal control As Point, _
       ByVal end As Point _
    ) 
    'Usage
     
    
    Dim instance As IGeometry
    Dim control As Point
    Dim end As Point
     
    instance.QuadraticBezierTo(control, end)
    void QuadraticBezierTo( 
       Point control,
       Point end
    )

    Parameters

    control
    The control point of the cubic Bezier curve.
    end
    The end point of the cubic Bezier curve.
    See Also