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