copiesConnectedLinks property

bool get copiesConnectedLinks

Gets or sets whether #copySelection should also copy Links that connect with selected Nodes. The default value is true. Setting this property does not raise any events.

The DraggingTool#copiesEffectiveCollection property serves a similar role for the DraggingTool when the user holds down the control key to modify the drag into a copy operation.

Implementation

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

Implementation

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