IR Framework

StopWatch Object

Object that acts as a stopwatch to provide a way to track elapsed time between events.

Remarks

A StopWatch object stores start and stop time information and reports an elapsed time in milliseconds.

The following code illustrates how to create a StopWatch object:

var swTracker = new Application.StopWatch();
ActiveDocument.Sections["Q-Contract Expenditures"].Process();
swTracker.stop();
Alert(msToTime(swTracker.elapsed));


Methods

start Method | stop Method



Properties

elapsed Property



Requirements





See Also

StopWatch Class