GoDiagram Win Reference
DoMouseOver Method (GoView)

Perform the immediate behavior normally associated with the mouse moving without a mouse button being pressed.
Syntax
'Declaration
 
Public Overridable Function DoMouseOver( _
   ByVal evt As GoInputEventArgs _
) As Boolean
public virtual bool DoMouseOver( 
   GoInputEventArgs evt
)

Parameters

evt

Return Value

true if the mouse-over occured on a document object whose 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 OnMouseOver on the object and on its Parents (if any) until it returns true. If no object is found at the event's point, or if no object's OnMouseOver returns true, it calls DoBackgroundMouseOver. The assumption is that any object that changes the Cursor will return true from the OnMouseOver method. This is normally called from GoToolManager.DoMouseMove, when no other more specific tools are in effect.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

GoView Class
GoView Members

 

 


© 2015. Northwoods Software Corporation. All Rights Reserved.

Send Feedback