cutSelection method

void cutSelection()

This command executes a #copySelection followed by a #deleteSelection. This is normally invoked by the Ctrl-X keyboard shortcut.

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 @see #canCutSelection

Implementation

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