GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDrawing Class / SameEndPoints Property
In This Topic
    SameEndPoints Property
    In This Topic
    Gets or sets whether the first and last point of each figure are at the same point.
    Syntax
    [Category("Appearance")]
    [DefaultValue(false)]
    [Description("Whether the first and the last point of each figure are at the same point.")]
    public virtual bool SameEndPoints {get; set;}

    Property Value

    The default value is false.
    Remarks
    For polycurves setting this property to true will cause the loss of the straight line connecting the last and first points. (But note that if the whole figure consists of just the four points of a Bezier curve, having the first and last points the same may result in a degenerate Bezier curve: a straight line.) Even when this property is true, the first and last point of each figure might not be at the same position if they are modified by calling SetPoint(Int32,PointF).
    See Also