GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDrawing Class / SmoothCurves Property
In This Topic
    SmoothCurves Property
    In This Topic
    Gets or sets whether all points joining any two adjacent Bezier segments form a smooth curve.
    Syntax
    [Category("Appearance")]
    [DefaultValue(false)]
    [Description("Whether all points joining any two adjacent Bezier segments form a smooth curve.")]
    public virtual bool SmoothCurves {get; set;}

    Property Value

    The default value is false. A value of true means that there are no corners between Bezier curves, although there still may be corners between straight line segments and between a Bezier segment and a straight segment.
    Remarks
    Even when this property is true, the rendered path might not be smooth if the points are modified by calling SetPoint(Int32,PointF).
    See Also