Application.StopWatch FunctionCreates a StopWatch object.[Application.]StopWatch () Return ValueThe StopWatch function returns a StopWatch object that can be used to track time between events.RemarksThe 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 |