TreeList.UseShiftSelect

Syntax

UseShiftSelect: Boolean

Description

The UseShiftSelect property determines whether multiple neighbor nodes can be selected while holding down the SHIFT key.

Comments

If the property is set to True, multiple neighbor nodes can be selected by holding down the SHIFT key, 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, multiple neighbor nodes cannot be selected by holding down the SHIFT key.

See also:

TreeList