GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / DoHover Method
In This Topic
    DoHover Method
    In This Topic
    Perform the behavior that normally occurs upon a mouse hover.
    Syntax
    public virtual bool DoHover( 
       GoInputEventArgs evt
    )

    Parameters

    evt

    Return Value

    true if the hover occured on a document object whose GoObject.OnHover method returned true
    Remarks

    By default this picks the document object at the event's GoInputEventArgs.DocPoint. If an object is found, it raises the ObjectHover event and calls GoObject.OnHover on the object and on its GoObject.Parents (if any) until it returns true. If no object is found at the event's point, it raises the BackgroundHover event.

    This is normally called from the GoToolManager.GoToolManager.DoMouseHover method, to process the standard behavior when the mouse hovers somewhere in the view.

    See Also