GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDrawing Class / InsertCurveFrom Method / InsertCurveFrom(Int32,PointF,PointF,PointF) Method
the destination index of the curve
the first control point
the second control point
the starting point of the new curve
In This Topic
    InsertCurveFrom(Int32,PointF,PointF,PointF) Method
    In This Topic
    Insert a Bezier curve segment into this shape that will end at the given index.
    Syntax
    public void InsertCurveFrom( 
       int i,
       PointF c1,
       PointF c2,
       PointF p
    )

    Parameters

    i
    the destination index of the curve
    c1
    the first control point
    c2
    the second control point
    p
    the starting point of the new curve
    Remarks
    IsSegmentIndex should be true for the given index i. Useful for attaching to the beginning of figures.
    See Also