doNoRelink method

void doNoRelink(
  1. Link existinglink,
  2. bool toend
)

This method is called upon a mouse up when #reconnectLink is not called.

This method may be overridden. By default this method does nothing. If you want to successfully perform any side-effects, you will need to set Tool#transactionResult to a string; otherwise this tool's transaction will be rolled-back. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @param {Link} existinglink @param {boolean} toend If true, the user was trying to modify the link's "to" node and port. @since 1.7

Implementation

void doNoRelink(
  _i3.Link existinglink,
  _i2.bool toend,
) {
  _i4.callMethod(
    this,
    'doNoRelink',
    [
      existinglink,
      toend,
    ],
  );
}