PdcCalculation.Children: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
for intCount = 0 to objCalc.Children.Count -1 | for intCount = 0 to objCalc.Children.Count -1 | ||
set objSubCalc = objCalc.Children(intCount) | set objSubCalc = objCalc.Children(intCount) | ||
msgbox objSubCalc.Description | |||
next | next | ||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 10:36, 23 April 2012
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