TreeListView.ShowCaptions

Syntax

ShowCaptions: Boolean;

Description

The ShowCaptions property determines whether column headers are displayed.

Comments

Use JSON or the setShowCaptions method to set the property value and the getShowCaptions 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 headers
Tree.setShowCaptions(false);

After executing the example column headers are hidden.

See also:

TreeListView