PdcCalculation.Children

From External Bemet Wiki
Jump to navigation Jump to search

Declaration

Children as pdcCalculationList

Description

Returns the CalculationList object.

Notes

This property returns the CalculationList object for the subcalculations of the calculation object.

Code example

This code example loops through the subcalculations of a calculation and returns the description.

dim objCalc
dim objSubCalc
dim intCount

  set objCalc = pdc.ActiveCalculation
  
  for intCount = 0 to objCalc.Children.Count -1
    set objSubCalc = objCalc.Children(intCount)
    msgbox objSubCalc.Description
  next

Availability