fromSpot property
Spot
get
fromSpot
Gets or sets where this link should connect at the #fromPort. The default value is Spot.Default, meaning that the value actually comes from the GraphObject#fromSpot property of the #fromPort.
This property is set by some layouts, if ForceDirectedLayout#setsPortSpots or LayeredDigraphLayout#setsPortSpots or TreeLayout#setsPortSpot or TreeLayout#setsChildPortSpot is true.
For examples of how to use this property, see Link Connection Points.
Implementation
_i3.Spot get fromSpot => _i4.getProperty(
this,
'fromSpot',
);
set
fromSpot
(Spot value)
Implementation
set fromSpot(_i3.Spot value) {
_i4.setProperty(
this,
'fromSpot',
value,
);
}