Name: String;
The Name property returns express report name.
Sub Main;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
s: String;
Begin
MB:=MetabaseClass.Active;
Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
s:=Expr.Name;
End Sub Main;
After executing the example the s variable contains name of the express report. Express report identifier - EXPRESS_REPORT.
See also: