dragsTree property

bool get dragsTree

Gets or sets whether moving or copying a node also includes all of the node's tree children and their descendants, along with the links to those additional nodes. The default value is false. Setting this property does not raise any events.

The CommandHandler#copiesTree property serves a similar role for the CommandHandler#copySelection command, when the user types control-C to copy the currently selected parts.

This property is a convenience getter/setter, and sets a value on #dragOptions.

Implementation

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

Implementation

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