isUnconnectedLinkValid property

bool get isUnconnectedLinkValid

Gets or sets whether it is valid to have partly or completely unconnected links.

The default value is false -- the user cannot draw or reconnect a link to "nowhere". Setting this property does not raise any events.

Implementation

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

Implementation

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