allowDragOut property

bool get allowDragOut

Gets or sets whether the user may start a drag-and-drop in this Diagram, possibly dropping in a different element. The initial value is false.

Implementation

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

Implementation

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