selectionAdornmentTemplate property

Adornment? get selectionAdornmentTemplate

Gets or sets the Adornment template used to create a selection handle for this Part.

If this is null, depending on the class of this Part, the value of Diagram#nodeSelectionAdornmentTemplate, Diagram#groupSelectionAdornmentTemplate, or Diagram#linkSelectionAdornmentTemplate is used instead.

It is commonplace to make use of a Placeholder in an Adornment for a Node, Group, or simple Part. The Placeholder represents the Adornment#adornedObject of the adorned Part. For Links, the Adornment must be of Panel#type Panel.Link.

Implementation

_i3.Adornment? get selectionAdornmentTemplate => _i4.getProperty(
      this,
      'selectionAdornmentTemplate',
    );
set selectionAdornmentTemplate (Adornment? value)

Implementation

set selectionAdornmentTemplate(_i3.Adornment? value) {
  _i4.setProperty(
    this,
    'selectionAdornmentTemplate',
    value ?? _i5.undefined,
  );
}