alternateSetsPortSpot property

bool get alternateSetsPortSpot

Gets or sets whether the TreeLayout should set the FromSpot for this parent node port.

The default value is true -- this may modify the spot of the port of this node, the parent, if the node has only a single port.

The spot used depends on the value of #alternatePortSpot. This sets the #alternateDefaults' property of the same name.

Implementation

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

Implementation

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