doStop method

void doStop()

The Diagram calls this method when this tool stops being the current tool; you should not call this method. Tool implementations should perform their per-use cleanup here, such as releasing mouse capture.

You should not call this method -- only the Diagram#currentTool property setter should call this method. If you want to stop a tool unexpectedly, you should call #doCancel. If your implementation of a tool wants to stop itself, you should call #stopTool.

By default this method 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.

It is commonplace to override this method in order to clean up whatever you have set up in an override of #doStart. @expose

Implementation

void doStop() {
  _i4.callMethod(
    this,
    'doStop',
    [],
  );
}