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


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

    Parameters

    control1
    The first control point of the cubic Bezier curve.
    control2
    The second control point of the cubic Bezier curve.
    end
    The end point of the cubic Bezier curve.
    See Also