GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / MouseUpTools Property
In This Topic
    MouseUpTools Property
    In This Topic
    Gets a list of "mode-less" tools to be considered for becoming the current Tool upon a mouse up event.
    Syntax
    [Browsable(false)]
    public virtual IList<IGoTool> MouseUpTools {get;}

    Property Value

    The IList of IGoTool may be modified.
    Remarks

    GoToolManager, an instance of which is normally the DefaultTool, iterates through this list when a mouse up event occurs. The first tool that it finds whose IGoTool.CanStart method returns true becomes this view's current Tool. If no such tool is found, the GoToolManager continues its normal behavior.

    By default this returns a list containing only an instance of the GoToolSelecting tool.

    See Also