linkTemplate property

Link get linkTemplate

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

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

Implementation

_i3.Link get linkTemplate => _i4.getProperty(
      this,
      'linkTemplate',
    );
set linkTemplate (Link value)

Implementation

set linkTemplate(_i3.Link value) {
  _i4.setProperty(
    this,
    'linkTemplate',
    value,
  );
}