Clear;
The Clear method resets regular report calculation parameters.
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: