Show contents 

Express > Express Assembly Interfaces > IEaxObject > IEaxObject.Description

IEaxObject.Description

Syntax

Description: String;

Description

The Description property returns description of an express report object.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    Object: IEaxObject;
    s: String;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    Object := Expr.ViewOrder(0);
    s := Object.Description;
End Sub UserProc;

After executing the example the "s" variable contains description of the first object of the express report. Express report identifier - EXPRESS_REPORT.

See also:

IEaxObject