PdcOperation.Tools

From External Bemet Wiki
Jump to navigation Jump to search

Declaration

Tools as PdcToolList

Description

Returns the tools object

Notes

This property returns the 'Tools' object for the selected operation. This property can be used to add tools to a internal operation.

Code example

This code example returns the Tools object of the selected operation.

dim objCalc
dim objOperation
dim objTools

  set objCalc = pdc.ActiveCalculation
  set objOperation = objCalc.OperationList(0)
  set objTools = objOperation.Tools
  msgbox "Number of assigned tools to this operation: " & objTools.Count

Availability