SelectionMode
The SelectionMode
enum determines how node selection works. Use Full
to require the entire node to be within the selection area, or Partial
to allow overlap.
enum SelectionMode {
Partial = 'partial',
Full = 'full',
}
Last updated on