RecalcC: ([Context:IPrxReportRecalcContext=Null]);
RecalcC(Prognoz.Platform.Interop.Report.IPrxReportRecalcContext);
Context. Объект, в котором задаются настройки вычисления отчета.
Метод RecalcC вычисляет отчет в соответствии с заданными параметрами.
Для выполнения примера необходим регламентный отчет с идентификатором «PRX_REPORT».
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;
UiReport1.Instance := report;
Context := Report.BeginRecalc;
Context.RecalcDataIsland(Report.DataIslands.Item(1)) := TriState.OnOption;
Report.RecalcC(Context);
End Sub Button1OnClick;
После выполнения примера будет вычислен отчет с указанными настройками.
См. также: