Size: IGxSizeF;
The Size property returns express report size.
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: