TreeListView.DblClickExpand

Syntax

DblClickExpand: Boolean;

Description

The DblClickExpand property determines mode of node expand/collapse on double click.

Comments

Use JSON or the setDblClickExpand method to set the property value and the getDblClickExpand 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 expand mode on double click
Tree.setDblClickExpand(false);

After executing the example it is disabled to expand nodes on double click.

See also:

TreeListView