TreeListView.ShowCheckBoxes

Syntax

ShowCheckBoxes: Boolean;

Description

The ShowCheckBoxes property determines whether checkboxes are displayed.

Comments

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

// Hide checkboxes
Tree.setShowCheckBoxes(false);

After executing the example checkboxes are hidden.

See also:

TreeListView