Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.TitleBar
TitleBar: IEaxTitle;
The TitleBar property returns express report title parameters.
Sub UserProc;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Title: IEaxTitle;
Begin
MB := MetabaseClass.Active;
Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
Title := Expr.TitleBar;
End Sub UserProc;
After executing the example the Title variable contains express report title parameters. Express report identifier - EXPRESS_REPORT.
See also: