PdcCalculation.OperationList
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