doWaitAfter method

void doWaitAfter(
  1. InputEvent event
)

This is called a certain delay after a call to #standardWaitAfter if there has not been any call to #cancelWaitAfter. The ToolManager overrides this method in order to implement support for mouse-hover behavior and tooltips.

By default this does nothing. This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @param {InputEvent} event The event that caused #standardWaitAfter.

Implementation

void doWaitAfter(_i3.InputEvent event) {
  _i4.callMethod(
    this,
    'doWaitAfter',
    [event],
  );
}