RecalcFormulaIsland (FormulaIsland: IPrxFormulaIsland): TriState;
RecalcFormulaIsland[Prognoz.Platform.Interop.Report.IPrxFormulaIsland] : Prognoz.Platform.Interop.ForeSystem.TriState;
FormulaIsland. Параметр определяет область формул, которая будет участвовать в вычислении.
Свойство RecalcFormulaIsland определяет необходимость вычисления указанной области формул.
Для выполнения примера необходим регламентный отчет с идентификатором «PRX_REPORT».
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
MB: IMetabase;
MObj: IMetabaseObject;
Report: IPrxReport;
Context: IPrxReportRecalcContext;
FormulaIsland: IPrxFormulaIsland;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("PRX_REPORT").Edit;
Report := MObj As IPrxReport;
Context := Report.CreateRecalcContext;
Context.Clear;
FormulaIsland := Report.FormulaIslands.Item(0);
Context.RecalcFormulaIsland(FormulaIsland) := TriState.OnOption;
Report.RecalcC(Context);
MObj.Save;
End Sub Button1OnClick;
После выполнения примера будет произведено вычисление указанной области формул отчета.
См. также: