StopWatch ObjectObject that acts as a stopwatch to provide a way to track elapsed time between events.RemarksA 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)); Methodsstart Method | stop MethodPropertieselapsed PropertyRequirementsSee AlsoStopWatch Class |