IEaxGrid.HighlightEvaluatedCells

Syntax

HighlightEvaluatedCells: Boolean;

Description

The HighlightEvaluatedCells property determines whether an icon indicating cells with calculated elements is displayed.

Comments

Available values:

Example

Executing the example requires an express report with the EXPRESS_REPORT identifier where at least one calculated element is set up.

Add links to the Express and Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Eax: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB := MetabaseClass.Active;
    //Get express report
    Eax := MB.ItemById("EXPRESS_REPORT").Edit As IEaxAnalyzer;
    //Get report data table
    Grid := Eax.Grid;
    //Determine whether icons are displayed
    Grid.HighlightEvaluatedCells := True;
    //Save express report
    (Eax As IMetabaseObject).Save;
End Sub UserProc;

After executing the example, an icon indicating cells with calculated values is displayed in express report.

See also:

IEaxGrid