Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.TitleBar

IEaxAnalyzeCore.TitleBar

Syntax

TitleBar: IEaxTitle;

Description

The TitleBar property returns express report title parameters.

Example

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:

IEaxAnalyzeCore