PdcCalculation.OperationList: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
No edit summary |
||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
OperationList as [[PdcOperationList]] | |||
== Description == | == Description == | ||
Returns the OperationList object | |||
== Notes == | == Notes == | ||
This property returns the 'OperationList' object of the current calculation. It can be used to browse through all the Operations of a calculation. | |||
== Code example == | == Code example == | ||
This code example loops through the OperationList of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
dim i | |||
set objCalc = pdc.ActiveCalculation | |||
For i = 0 to objCalc.OperationList.Count - 1 | |||
msgbox objCalc.OperationList.Items(i).ID | |||
Next | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 10:03, 21 May 2012
Declaration
OperationList as PdcOperationList
Description
Returns the OperationList object
Notes
This property returns the 'OperationList' object of the current calculation. It can be used to browse through all the Operations of a calculation.
Code example
This code example loops through the OperationList of the active calculation.
dim objCalc
dim i
set objCalc = pdc.ActiveCalculation
For i = 0 to objCalc.OperationList.Count - 1
msgbox objCalc.OperationList.Items(i).ID
Next