Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.Grid

IEaxAnalyzeCore.Grid

Syntax

Grid: IEaxGrid;

Description

The Grid property returns the object containing the express report table.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB:=MetabaseClass.Active;
    Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    Grid:=Expr.Grid;
End Sub UserProc;

After executing the example the Grid variable will contain the express report table. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzeCore