copyable property

bool get copyable

Gets or sets whether the user may copy this part. The initial value is true.

Implementation

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

Implementation

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