Math387.StopTimer Method

Overload List

#SignatureDescription
1function StopTimer: Double;Stops the timer with microsecond resolution.
2function StopTimer(const timervar: Int64): Double;Stops the microsecond timer.

Overload 1: function StopTimer: Double;

Stops the timer with microsecond resolution.

Returns: Double

Remarks:

Call this procedure to stop measuring time. To begin call Math387.StartTimer. The result returned is time in seconds since the StartTimer routine was called.

Overload 2: function StopTimer(const timervar: Int64): Double;

Stops the microsecond timer.

#NameTypeDescription
1timervarInt64

Returns: Double

Remarks:

Call this procedure to stop measuring time. To begin call Math387.StartTimer. The timervar must be the same as passed to the Math387.StartTimer routine. The result returned is time in seconds since the StartTimer routine was called.