Show contents 

Home > Foresight Analytics Platform > Web Application and Desktop Application > Application Development and Functionality Enhancement > Developing in Development Environment > Description of System Assemblies > Express > Express Assembly Interfaces > IEaxHeader > IEaxHeader.Right

IEaxHeader.Right

Syntax

Right: IEaxHeaderPart;

Description

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

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

See also:

IEaxHeader