GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoPolygonStyle Enumeration
In This Topic
    GoPolygonStyle Enumeration
    In This Topic
    Specifies the kind of curve drawn between the points of the polygon.
    Syntax
    public enum GoPolygonStyle : System.Enum 
    Members
    MemberDescription
    Bezier A Bezier curve is drawn using four points: a start point, two control points, and an end point. Additional sets of three points specify additional Bezier curves, where the new start point is the old end point.
    LineA straight line is drawn between each two consecutive points in the GoPolygon, and between the last and first points to close the curve.
    See Also