dragsLink property

bool get dragsLink

Gets or sets whether the user can move a single Link, disconnecting it from connected nodes and possibly connecting it to valid ports. By default this property is false.

In typical DraggingTool operation this is set via DraggingTool#dragsLink.

Implementation

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

Implementation

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