TreeListView.EnableRangeSelect

Syntax

EnableRangeSelect: Boolean;

Description

The EnableRangeSelect property determines whether nodes can be selected by range.

Comments

Use JSON or the setEnableRangeSelect method to set the property value and the getEnableRangeSelect method to get the property value.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Disable node selection by range
Tree.setEnableRangeSelect(false);

After executing the example it is disable to select nodes by range.

See also:

TreeListView