IEaxAnalyzeCore.TitleBar

Syntax

TitleBar: IEaxTitle;

Description

The TitleBar property returns express report title parameters.

Example

Sub Main;

Var

MB: IMetabase;

Expr: IEaxAnalyzer;

Title: IEaxTitle;

Begin

MB:=MetabaseClass.Active;

Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;

Title:=Expr.TitleBar;

End Sub Main;

 

After executing the example the Title variable contains express report title parameters. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzeCore