alternateChildPortSpot property
Spot
get
alternateChildPortSpot
Gets or sets the alternate spot that children nodes' ports get as their ToSpot The default value is Spot.Default.
A value of Spot.Default will cause the TreeLayout to assign a ToSpot based on the parent node's TreeVertex#angle.
If the value is other than NoSpot, it is just assigned. When #path is TreeLayout.PathSource|PathSource, the port's FromSpot is set instead of the ToSpot. This sets the #alternateDefaults' property of the same name.
Implementation
_i3.Spot get alternateChildPortSpot => _i4.getProperty(
this,
'alternateChildPortSpot',
);
set
alternateChildPortSpot
(Spot value)
Implementation
set alternateChildPortSpot(_i3.Spot value) {
_i4.setProperty(
this,
'alternateChildPortSpot',
value,
);
}