GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDocument Class / SuspendsRouting Property
In This Topic
    SuspendsRouting Property
    In This Topic
    Gets or sets whether IGoRoutable GoObjects should have their IGoRoutable.IGoRoutable.CalculateRoute method called immediately, or later when this property is set back to false.
    Syntax
    [Browsable(false)]
    public bool SuspendsRouting {get; set;}

    Property Value

    The default value of this property is false. It is temporarily set to true in methods such as MoveSelection, where the moving of multiple objects might cause repeated routing calls for the same objects.
    Remarks
    You probably shouldn't be using this property. No Changed event is raised when this property is set. If you set this property to false, you are also responsible for calling DoDelayedRouting in order to properly deal with any IGoRoutable objects that have been added to the DelayedRoutings collection.
    See Also