IPrxReportRecalcContext.RecalcSheet

Syntax

RecalcSheet(Sheet: IPrxSheet): TriState;

Parameters

Sheet - report sheet, which calculation parameters should be determined.

Description

The RecalcSheet property determines whether the specified report sheet is to be calculated.

Example

Executing the example requires a regular report with the PRX_REPORT identifier.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    Context: IPrxReportRecalcContext;
    Sheet: IPrxSheet;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("PRX_REPORT").Edit;
    Report := MObj As IPrxReport;
    Context := Report.CreateRecalcContext;
    Context.Clear;
    Sheet := Report.Sheets.Item(0);
    Context.RecalcSheet(Sheet) := TriState.OnOption;
    Report.RecalcC(Context);
    MObj.Save;
End Sub Button1OnClick;

After executing the example the first sheet of the regular report is calculated.

See also:

IPrxReportRecalcContext