IPrxSheet.Scale

Syntax

Scale: Double;

Description

The Scale property determines sheet's scale.

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

Report: IPrxReport;

Sheet: IPrxSheet;

Begin

MB:=MetabaseClass.Active;

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

Report:=MObj As IPrxReport;

Sheet:=Report.ActiveSheet;

Sheet.Scale:=175;

MObj.Save;

End Sub Main;

After executing the example the zoom 175% is set for the active sheet of the regular report. The identifier of the regular report - Report.

See also:

IPrxSheet