PdcOperation.GetTime

From External Bemet Wiki
Revision as of 13:27, 21 May 2012 by Mike (talk | contribs) (Created page with "== Declaration == GetTime as double == Description == Returns the total estimated time == Notes == This method returns the total estimated time for the operation. == Code ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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