GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / OnHover Method
In This Topic
    OnHover Method
    In This Topic
    Called when the user hovers over this object.
    Syntax
    public virtual bool OnHover( 
       GoInputEventArgs evt,
       GoView view
    )

    Parameters

    evt
    view

    Return Value

    True to indicate this object handled the event and thus that the calling view need not continue calling the method up the chain of parent objects.
    Remarks
    By default this method does nothing but return false. This method is normally invoked by the GoToolManager tool, through the GoView.GoView.DoHover method.
    See Also