GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / DoMouseOver Method
In This Topic
    DoMouseOver Method (GoView)
    In This Topic
    Perform the immediate behavior normally associated with the mouse moving without a mouse button being pressed.
    Syntax
    public virtual bool DoMouseOver( 
       GoInputEventArgs evt
    )

    Parameters

    evt

    Return Value

    true if the mouse-over occured on a document object whose GoObject.OnMouseOver method returned true
    Remarks
    This is called to handle mouse moves immediately. If you don't need the immediate response, but would prefer getting an event after the mouse has rested at one spot for a while, use the DoHover method, the GoObject.OnHover method on GoObject, or the ObjectHover or BackgroundHover events. By default this picks the topmost/frontmost view or document object at the event's GoInputEventArgs.DocPoint. It calls DoToolTipObject on the result, even if it is null. If an object is found, it calls GoObject.OnMouseOver on the object and on its GoObject.Parents (if any) until it returns true. If no object is found at the event's point, or if no object's GoObject.OnMouseOver returns true, it calls DoBackgroundMouseOver. The assumption is that any object that changes the Cursor will return true from the GoObject.OnMouseOver method. This is normally called from GoToolManager.DoMouseMove, when no other more specific tools are in effect.
    See Also