doToolTip method

void doToolTip()

Implement the standard behavior for tooltips, called by #doWaitAfter when the mouse has not moved for a period of time.

This looks for a GraphObject at the latest mouse point. If it finds an object, it checks for a GraphObject#toolTip. If it has none, this method searches up the visual tree for a containing Panel that does have a tooltip.

If it didn't find any object, this looks for a Diagram#toolTip.

If it eventually finds a tooltip, this calls #showToolTip. Otherwise this calls #hideToolTip.

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