GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDrawing Class / InsertCurveTo Method / InsertCurveTo(Int32,PointF,PointF,PointF) Method
the index for the first point, c1; must be greater than zero
the first control point
the second control point
the destination point
In This Topic
    InsertCurveTo(Int32,PointF,PointF,PointF) Method
    In This Topic
    Insert a Bezier curve segment into this shape at the given index.
    Syntax
    public void InsertCurveTo( 
       int i,
       PointF c1,
       PointF c2,
       PointF p
    )

    Parameters

    i
    the index for the first point, c1; must be greater than zero
    c1
    the first control point
    c2
    the second control point
    p
    the destination point
    Remarks
    IsSegmentIndex should be true for the given index i.
    See Also