TreeListView.EnableColumnsMenu

Syntax

EnableColumnsMenu: Boolean;

Description

The EnableColumnsMenu property determines visibility of column selection menu.

Comments

Column selection menu is a right corner arrow.

Use JSON or the setEnableColumnsMenu method to set the property value and the getEnableColumnsMenu 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 column menu
Tree.setEnableColumnsMenu(false);

After executing the example column selection menu is hidden.

See also:

TreeListView