GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDrawing Class / IsClosedFigure Method
An index contained in the figure to be determined closed or not. If less than zero, it will be set to zero. If beyond the end of the array, it will be set to the last index.
In This Topic
    IsClosedFigure Method
    In This Topic
    This predicate determines if the figure containing the given index is closed.
    Syntax
    public bool IsClosedFigure( 
       int i
    )

    Parameters

    i
    An index contained in the figure to be determined closed or not. If less than zero, it will be set to zero. If beyond the end of the array, it will be set to the last index.

    Return Value

    true if the figure containing the index is closed. false if the figure containing the index is open, or if there are no points.
    Remarks
    A closed figure will be filled with a brush if one is set, and will have a line drawn from its end point to its start point, if they are not already at the same point. To close or open figures, use OpenFigure and CloseFigure(Int32).
    See Also