PdcCalculation.Delete
Jump to navigation
Jump to search
Declaration
Delete(Index as long)
Description
Removes a calculation object
Notes
This property removes a specified subcalculation The parameter is the index in the list An error occurs if the list is empty
Code example
on error resume next
pdc.ActiveCalculation.Children.Delete(0)
if err then
msgbox Err.Description
else
end if
on error goto 0