IEaxHeader.Left

Syntax

Left: IEaxHeaderPart;

Description

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

End Sub Main;

 

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

See also:

IEaxHeader