IPrxSheet.Recalc

Syntax

Recalc;

Description

The Recalc method calculates the sheet.

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.Recalc;
    MObj.Save;
End Sub UserProc;

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