groupTemplate property

Group groupTemplate

Gets or sets the default Group template used as the archetype for group data that is added to the #model.

Setting this property just modifies the #groupTemplateMap by replacing the entry named with the empty string. The value must not be null and must be a Group, not a Node or simple Part. This Part must not be in the visual tree of any Diagram.

Implementation

_i3.Group get groupTemplate => _i4.getProperty(
      this,
      'groupTemplate',
    );
void groupTemplate=(Group value)

Implementation

set groupTemplate(_i3.Group value) {
  _i4.setProperty(
    this,
    'groupTemplate',
    value,
  );
}