IEaxMap.Map

Syntax

Map: IMap;

Description

The Map property returns parameters of express report map.

Example

Sub Main;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    EMap: IEaxMap;
    Map: IMap;
Begin
    MB:=MetabaseClass.Active;
    Expr:=MB.ItemById(
"EXPRESS_REPORT").Bind As IEaxAnalyzer;
    EMap:=Expr.Map;
    Map:=EMap.Map;
End Sub Main;

After executing this example the variable Map contains map parameters. Express report identifier - EXPRESS_REPORT.

See also:

IEaxMap