PdcOperation.SetupMachine

From External Bemet Wiki
Revision as of 11:22, 22 June 2017 by Arjan (talk | contribs) (Created page with "== Declaration == SetupMachine as double == Description == This method returns or sets the machine setup time of an internal operation. == Notes == == Code example == This...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Declaration

SetupMachine as double

Description

This method returns or sets the machine setup time of an internal operation.

Notes

Code example

This method returns the machine setup time of the first operation of a calculation.

Sub sGetSetupMachine
dim objCalc
dim objBWPL

  set objCalc = pdc.ActiveCalculation
  set objBWPL = objCalc.OperationList(0)

  msgbox objBWPL.SetupMachine

  set objBWPL = nothing
  set objCalc  = nothing
End Sub

Availability

5.3 and onwards