TreeList.UseShiftSelect

Syntax

UseShiftSelect: Boolean

Description

The UseShiftSelect property determines if it is possible to select multiple neighbor nodes while holding down the SHIFT key.

Comments

If the property is set to True, several neighbor nodes can be selected by holding down the SHIFT button, otherwise the selection is unavailable.

Default value is true.

Example

To execute this example, create the TreeList component named treeListSett.

Property value can be set via a JSON object:

UseShiftSelect: false

or at API level:

treeList.setUseShiftSelect(false);

After executing the example, several neighbor nodes cannot be selected by holding down the SHIFT button.

See also:

TreeList