TreeListView.EnableSearch

Syntax

EnableSearch: Boolean;

Description

The EnableSearch property determines whether it is available to search in a tree.

Comments

Use JSON or the setEnableSearch method to set the property value, and the getEnableSearch 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 search
Tree.setEnableSearch(false);

After executing the example search is disabled in a tree.

See also:

TreeListView