StopWatch.start MethodSets the start time of a StopWatch object.object.start ( ) Arguments
RemarksIf the start method is not used, the start time for the StopWatch object defaults to the time when the object was instantiated.The following example illustrates the use of the start method. var swTracker = new Application.StopWatch(); swTracker.start(); ActiveDocument.Sections["Q-Contract Expenditures"].Process(); swTracker.stop(); Alert(msToTime(swTracker.elapsed)); Applies To:StopWatch ObjectRequirementsSee Alsostop() methodelapsed property |