selectAll method

void selectAll()

This command selects all of the selectable Parts in the diagram by setting Part#isSelected to true on each one. This is normally invoked by the Ctrl-A keyboard shortcut.

This method raises the "ChangingSelection" and "ChangedSelection" diagram events. This ignores all parts in temporary layers.

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 #canSelectAll

Implementation

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