nodeSelectionAdornmentTemplate property

Adornment get nodeSelectionAdornmentTemplate

Gets or sets the default selection Adornment template, used to adorn selected Parts other than Groups or Links.

Each Node or simple Part can have its own Part#selectionAdornmentTemplate, which if non-null will take precedence over this Diagram property.

This Adornment must not be in the visual tree of any Diagram.

Implementation

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

Implementation

set nodeSelectionAdornmentTemplate(_i3.Adornment value) {
  _i4.setProperty(
    this,
    'nodeSelectionAdornmentTemplate',
    value,
  );
}