PdcCalculation.Parent
Jump to navigation
Jump to search
Declaration
Parent as PdcCalculation
Description
Returns the calculation above itself
Notes
This property returns the 'Parent' calculation from the current calculation if available.
Code example
This code example returns the parent of the active calculation.
dim objCalc
dim objParentCalc
set objCalc = pdc.ActiveCalculation
If IsValid(objCalc.Parent) Then
set objParentCalc = objCalc.Parent
End If