fromEndSegmentLength property

num get fromEndSegmentLength

Gets or sets the length of the first segment, when the computed "from spot" at the #fromPort is not Spot.None. The default value is NaN, meaning that the value actually comes from the GraphObject#fromEndSegmentLength property of the #fromPort. This value also limits how short the #fromShortLength may be drawn.

For examples of how to use this property, see Link Connection Points.

Implementation

_i2.num get fromEndSegmentLength => _i4.getProperty(
      this,
      'fromEndSegmentLength',
    );
set fromEndSegmentLength (num value)

Implementation

set fromEndSegmentLength(_i2.num value) {
  _i4.setProperty(
    this,
    'fromEndSegmentLength',
    value,
  );
}