TreeListBase.NodeFixedSelected

Syntax

NodeFixedSelected: Boolean;

Description

The NodeFixedSelected property determines whether the specified node can be selected.

Comments

Use the setNodeFixedFocused(nodeKey, value) method to set the property value, and the getNodeFixedFocused(nodeKey) method to get the property value.

Parameters:

Available value variants:

Example

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

// Disable selection of the first node
Tree.setNodeFixedSelected(0, true);

After executing the example selection of the first node is disabled.

See also:

TreeListBase