doMouseUp method

void doMouseUp()

Iterate over the #mouseUpTools list and start the first tool for which its Tool#canStart predicate returns true.

Starting a tool replaces the Diagram#currentTool with the new tool. Successfully doing so also activates the new tool by calling Tool#doActivate and passes on the mouse-up event to it by calling Tool#doMouseUp.

If no startable tool is found it deactivates this tool manager, to get ready for a mouse-down and ignore mouse-move and mouse-up events.

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