fromLinkableDuplicates property
bool
get
fromLinkableDuplicates
Gets or sets whether the user may draw duplicate Links from this port. This property is used by LinkingBaseTool#isValidLink. The default value is false.
You must set this property on a GraphObject whose #portId is non-null, unless the whole Node is acting as a single port, in which case this property should be set on the Node.
Implementation
_i2.bool get fromLinkableDuplicates => _i4.getProperty(
this,
'fromLinkableDuplicates',
);
set
fromLinkableDuplicates
(bool value)
Implementation
set fromLinkableDuplicates(_i2.bool value) {
_i4.setProperty(
this,
'fromLinkableDuplicates',
value,
);
}