IEaxObject.Size

Syntax

Size: IGxSizeF;

Description

The Size property returns express report size.

Example

Sub Main;

Var

MB: IMetabase;

Expr: IEaxAnalyzer;

Object: IEaxObject;

Size: IGxSizeF;

d: Double;

Begin

MB:=MetabaseClass.Active;

Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;

Object:=Expr.ViewOrder(0);

Size:=Object.Size;

d:=Size.Height;

End Sub Main;

 

After executing the example the d variable will contain height of the first object of the express report. Express report identifier - EXPRESS_REPORT.

See also:

IEaxObject