PdcOperation.GetTime

From External Bemet Wiki
Jump to navigation Jump to search

Declaration

GetTime as double

Description

Returns the total estimated time

Notes

This method returns the total estimated time for the operation.

Code example

This code example returns total estimated time for the operation.

dim objCalc
dim objBew
dim x

  set objCalc = pdc.ActiveCalculation
  for x = 0 to objCalc.OperationList.Count - 1
    set objBew = objCalc.OperationList(x)
    msgbox objBew.GetTime
  next 'x

Availability