PrintScale: Double;
The PrintScale property specifies the object scale when it is printed.
The value lies in the range from 0.1 to 5 (10-500%). The following values are also reserved: 0 - place on one page, -1 - justify to page width, -2 - adjust to page height.
The property is outdated, it is recommended to use the Scale property instead.
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.PrintScale:=1.5;
MObj.Save;
End Sub Main;
After executing this example the first object of the express report is to be printed using the scale 150%. Express report identifier - EXPRESS_REPORT.
See also: