IR Framework

Application.StopWatch Function

Creates a StopWatch object.
[Application.]StopWatch ()

Return Value

The StopWatch function returns a StopWatch object that can be used to track time between events.



Remarks

The following example uses StopWatch to create a StopWatch object:

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


Requirements