maxSelectionCount property
num
get
maxSelectionCount
Gets or sets the maximum number of selected objects. The default value is a large positive integer. Values must be non-negative. Decreasing this value may cause objects to be removed from #selection in order to meet the new lower limit.
Implementation
_i2.num get maxSelectionCount => _i4.getProperty(
this,
'maxSelectionCount',
);
set
maxSelectionCount
(num value)
Implementation
set maxSelectionCount(_i2.num value) {
_i4.setProperty(
this,
'maxSelectionCount',
value,
);
}