DisplacingCalculationTypes.<Name of chart of calculation types>.Add
Syntax:
Returned value:
Description:
Availability:
Note:
Example:
Procedure SetDisplacingCalculation(CalculationType, DisplacingCalculationTypes) CalculationType = CalculationType.GetObject(); CalculationType.DisplacingCalculationTypes.Clear(); If DisplacingCalculationTypes <> Undefined Then For each Item In DisplacingCalculationTypes Do NewRow = CalculationType.DisplacingCalculationTypes.Add(); NewRow.CalculationType = Item.Value; EndDo; EndIf; CalculationType.Write(); EndProcedure |