PdcToolList.Clear
Jump to navigation
Jump to search
Declaration
Clear
Description
Removes all tool objects
Notes
This property clears the toollist for the selected operation.
Code example
This code example clears the toollist for the first operation.
dim objCalc
dim objOperation
dim objTools
set objCalc = pdc.ActiveCalculation
set objOperation = objCalc.OperationList(0)
set objTools = objOperation.Tools
objTools.Clear
'the short version: objCalc.OperationList(0).Tools.Clear
Availability
Available since March 2008.