IEaxAnalyzerOptions.DisplayClippedCellHints

Syntax

DisplayClippedCellHints: Boolean;

Description

The DisplayClippedCellHints property determines whether to show a tooltip containing the full text of table cell.

Comments

Available values:

Example

Executing the example requires an express report with the EXPRESS identifier.

Add links to the Express and Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    //Report: IPrxReport;
    Options: IEaxAnalyzerOptions;
Begin
    MB := MetabaseClass.Active;
    // Express report
    Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
    Options := Express.Options;
    // Disable displaying of tooltip with cell value
    Options.DisplayClippedCellHints := False;
    // Save changes
    (Express As IMetabaseObject).Save;
End Sub UserProc;

After executing the example, displaying of tooltips is disabled for express report cells.

See also:

IEaxAnalyzerOptions