Show contents 

Express > Express Assembly Interfaces > IEaxHeader > IEaxHeader.Left

IEaxHeader.Left

Syntax

Left: IEaxHeaderPart;

Description

The Left property returns left 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.Left;
End Sub UserProc;

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

See also:

IEaxHeader