IEaxObject.ViewScale

Syntax

ViewScale: Double;

Description

The ViewScale property determines size of object window in the express report.

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

Expr: IEaxAnalyzer;

Object: IEaxObject;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("EXPRESS_REPORT").Edit;

Expr:=MObj As IEaxAnalyzer;

Object:=Expr.ViewOrder(0);

Object.ViewScale:=1.5;

MObj.Save;

End Sub Main;

 

After executing the example the first object of the express report is displayed using the scale 150%. Express report identifier - EXPRESS_REPORT.

See also:

IEaxObject