doMouseHover method
Implement the standard behavior for mouse hover and mouse hold events, called by #doWaitAfter when the mouse has not moved for a period of time.
If there has been no mouse down, the timer is set for #hoverDelay milliseconds. If it executes, it calls any GraphObject#mouseHover function on the object at the mouse or on any of its containing panels, or it calls any Diagram#mouseHover function for a background mouse-hover event.
If there had been a mouse down, the timer is set for #holdDelay milliseconds. If it executes, it calls any GraphObject#mouseHold function on the object at the mouse or on any of its containing panels, or it calls any Diagram#mouseHold function for a background mouse-held-down event.
This method may be overridden, but you should consider calling this base method in order to get all of its functionality. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose
Implementation
void doMouseHover() {
_i4.callMethod(
this,
'doMouseHover',
[],
);
}