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