SelectionMode
The SelectionMode
enum provides two options for node selection behavior:
Full
: A node is only selected when the selection rectangle fully contains itPartial
: A node is selected when the selection rectangle partially overlaps with it
enum SelectionMode {
Partial = 'partial',
Full = 'full',
}
Last updated on