standardMouseOver method

void standardMouseOver()

Implement the standard behavior for mouse enter, over, and leave events, where the mouse is moving but no button is pressed. This should be called by mouse move event handlers when wanting to detect and invoke mouse enter/over/leave event handlers.

The GraphObject#mouseEnter property provides a function to call when the mouse first enters an object or any of its contained objects (if the object is actually a Panel).

The GraphObject#mouseLeave property provides a function to call when the mouse leaves an object and all of its contained objects (if the object is actually a Panel).

The GraphObject#mouseOver property and Diagram#mouseOver properties provide functions to call when the mouse moves but stays within the same GraphObject or when the mouse moves in the background of the Diagram.

This method is also responsible for updating the Diagram#currentCursor according to the value of GraphObject#cursor and Diagram#defaultCursor.

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 standardMouseOver() {
  _i4.callMethod(
    this,
    'standardMouseOver',
    [],
  );
}