copiesEffectiveCollection property

bool get copiesEffectiveCollection

Gets or sets whether for a copying operation the extended selection is copied or only the selected parts. The default value is true. Setting this property does not raise any events.

The CommandHandler#copiesConnectedLinks property serves a similar role for the CommandHandler#copySelection command, when the user types control-C to copy the currently selected parts.

Implementation

_i2.bool get copiesEffectiveCollection => _i4.getProperty(
      this,
      'copiesEffectiveCollection',
    );
set copiesEffectiveCollection (bool value)

Implementation

set copiesEffectiveCollection(_i2.bool value) {
  _i4.setProperty(
    this,
    'copiesEffectiveCollection',
    value,
  );
}