canSelectMany property
bool?
get
canSelectMany
Whether the tree supports multi-select. When the tree supports multi-select and a command is executed from the tree, the first argument to the command is the tree item that the command was executed on and the second argument is an array containing all selected tree items.
Implementation
_i2.bool? get canSelectMany => _i5.getProperty(
this,
'canSelectMany',
);
set
canSelectMany
(bool? value)
Implementation
set canSelectMany(_i2.bool? value) {
_i5.setProperty(
this,
'canSelectMany',
value ?? _i6.undefined,
);
}