TreeListView.RightButtonSelect

Syntax

RightButtonSelect: Boolean;

Description

The RightButtonSelect property determines whether nodes can be selected with the right mouse button.

Comments

By default the property is set to false.

Use JSON or the setRightButtonSelect method to set the property value and the getRightButtonSelect 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).

// Set whether nodes can be selected with right mouse button
Tree.setRightButtonSelect(true);

After executing the example it is set whether node can be selected with the right mouse button.

See also:

TreeListView