GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoGrid Class / UnboundedSpots Property
In This Topic
    UnboundedSpots Property
    In This Topic
    Gets or sets the directions in which this grid is effectively unlimited in size and extent.
    Syntax
    [Category("Grid")]
    [DefaultValue(0)]
    [Description("The directions in which the grid is infinite, a bitwise-OR of the standard eight GoObject spots")]
    public virtual int UnboundedSpots {get; set;}

    Property Value

    This must be some bitwise OR of the standard eight side-or-corner spots: GoObject.GoObject.TopLeft, GoObject.MiddleTop, GoObject.TopRight, GoObject.MiddleLeft, GoObject.MiddleRight, GoObject.BottomLeft, GoObject.MiddleBottom, GoObject.BottomRight. The default value is GoObject.NoSpot; that is, this grid object is completely finite, like the typical GoObject.
    See Also