copiesTree property
bool
get
copiesTree
Gets or sets whether #copySelection should also copy subtrees. The default value is false. Setting this property does not raise any events.
The DraggingTool#dragsTree property serves a similar role for the DraggingTool for both moving and copying operations.
Implementation
_i2.bool get copiesTree => _i4.getProperty(
this,
'copiesTree',
);
set
copiesTree
(bool value)
Implementation
set copiesTree(_i2.bool value) {
_i4.setProperty(
this,
'copiesTree',
value,
);
}