groupable property

bool get groupable

Gets or sets whether the user may group this part to be a member of a new Group. The initial value is true.

The grouping command is implemented by CommandHandler#groupSelection and depends on CommandHandler#archetypeGroupData having been set to a node data object. A Group can be ungrouped by the user if you set Group#ungroupable to true.

Implementation

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

Implementation

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