IEaxHeader.Center

Syntax

Center: IEaxHeaderPart;

Description

The Center property returns central part of express report header.

Example

Sub Main;

Var

MB: IMetabase;

Expr: IEaxAnalyzer;

Header: IEaxHeader;

HeaderPart: IEaxHeaderPart;

Begin

MB:=MetabaseClass.Active;

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

Header:=Expr.Header;

HeaderPart:=Header.Center;

End Sub Main;

 

After executing the example the HeaderPart variable contains central part of express report header. Express report identifier - EXPRESS_REPORT.

See also:

IEaxHeader