IPrxSheet.Recalc

Syntax

Recalc;

Description

The Recalc method calculates the sheet.

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.Recalc;

MObj.Save;

End Sub Main;

After executing the example the active sheet of the regular report is calculated. The identifier of the regular report - Report. The identifier of the regular report - Report.

See also:

IPrxSheet