IEaxObject.Description

Syntax

Description: String;

Description

The Description property returns description of an express report object.

Example

Sub Main;

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 Main;

 

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