doSuccess method

void doSuccess(
  1. String oldstring,
  2. String newstring
)

Call the #textBlock's TextBlock#textEdited event handler, if there is one. This is called just after the TextBlock#text has been set to the new string value. When this method returns, this tool raises the "TextEdited" DiagramEvent and commits the transaction. This method may be overridden. @expose @param oldstring @param newstring @since 2.1

Implementation

void doSuccess(
  _i2.String oldstring,
  _i2.String newstring,
) {
  _i4.callMethod(
    this,
    'doSuccess',
    [
      oldstring,
      newstring,
    ],
  );
}