TreeListView.ShowToolTips

Syntax

ShowToolTips: Boolean;

Description

The ShowToolTips property determines whether tooltips are displayed.

Comments

Use JSON or the setShowToolTips method to set the property value and the getShowToolTips 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 displaying of tooltips
Tree.setShowToolTips(false);

After executing the example displaying of tooltips is enabled.

See also:

TreeListView