Show contents 

Express > Express Assembly Interfaces > IEaxHeader > IEaxHeader.Center

IEaxHeader.Center

Syntax

Center: IEaxHeaderPart;

Description

The Center property returns central part of express report header.

Example

Sub UserProc;
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 UserProc;

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

See also:

IEaxHeader