isCopyEnabled property

bool get isCopyEnabled

Gets or sets whether for any internal copying operation is permitted by control-drag-and-drop. This property affects the behavior of #mayCopy, but does not affect whether copied objects may be dropped into this diagram from a different diagram.

The default value is true. Setting this property does not raise any events.

Implementation

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

Implementation

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