Show contents 

Report > Report Assembly Interfaces > IPrxSheet > IPrxSheet.Scale

IPrxSheet.Scale

Syntax

Scale: Double;

Description

The Scale property determines sheet's scale.

Example

Sub UserProc;
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 UserProc;

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