ILanerAttributeColumns.ShowFullNamesInHints

Syntax

ShowFullNamesInHints: Boolean;

Description

The ShowFullNamesInHints property determines whether to show hierarchy of attribute values.

Comments

The hierarchy is displayed in a tool tip on pointing the mouse cursor on the cell with an attribute value.

Available values:

Example

Executing the example requires a form with the Button1 button, the LanerBox component named LanerBox1 and the UiErAnalyzer component which is used as a data source for LanerBox. Workbook of the time series database must be loaded to UiErAnalyzer1. One or several series attributes must be displayed in the LanerBox component.

Click the button to start executing this example.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Analyzer: IEaxAnalyzer;
    Laner: Ilaner;
    AttrCols: ILanerAttributeColumns;
Begin
    Analyzer := UiErAnalyzer1.ErAnalyzer;
    Laner := Analyzer.Laner;
    AttrCols := Laner.AttributeColumns;
    AttrCols.ShowFullNamesInHints := True;
End Sub Button1OnClick;

After executing this example, in a workbook, hierarchy of attribute values is displayed in a tool tip.

See also:

ILanerAttributeColumns