Grid: IEaxGrid;
The Grid property returns the object containing the express report table.
Sub Main;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Grid: IEaxGrid;
Begin
MB:=MetabaseClass.Active;
Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
Grid:=Expr.Grid;
End Sub Main;
After executing the example the Grid variable will contain the express report table. Express report identifier - EXPRESS_REPORT.
See also: