TreeList.UseCtrlSelect

Syntax

UseCtrlSelect: Boolean

Description

The UseCtrlSelect property determines whether multiple nodes can be selected while holding down the CTRL key.

Comments

If the property is set to True, multiple nodes can be selected while holding down the CTRL key, otherwise multiple 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:

UseCtrlSelect: false

or at API level:

treeListSett.setUseCtrlSelect(false);

After executing the example it is impossible to select multiple nodes while holding down the CTRL key.

NOTE. Property value is overridden by the value set for the TreeList.IsCSMultiSelect property.

See also:

TreeList