IPrxReportRecalcContext.RecalcReport

Syntax

RecalcReport: TriState;

Description

The RecalcReport property determines whether the entire report is to be updated.

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;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("PRX_REPORT").Edit;
    Report := MObj As IPrxReport;
    Context := Report.CreateRecalcContext;
    Context.ParamValuesChanged := TriState.OnOption;
    Report.RecalcC(Context);
    MObj.Save;
End Sub Button1OnClick;

After executing the example the report is calculated.

See also:

IPrxReportRecalcContext