DestroyStopwatch()
Summary
Stops or cancels a stopwatch.
Syntax
DestroyStopwatch(string stopwatch_name)
| Argument | Contents |
|---|---|
| stopwatch_name | The name of the stopwatch |
Notes
-
Destroy a stopwatch when it is no longer in use to free up system resources.
Example
CreateStopwatch("test my macro")
RunMacro("my macro")
time = CheckStopwatch("test my macro")
ShowMessage("The macro took " + String(time) + " seconds.")
DestroyStopwatch("test my macro")
See Also
| Function | Summary |
|---|---|
| CreateStopwatch() | Start a stopwatch to track clock time |
| CheckStopwatch() | Determine the elapsed time since a stopwatch was started |
| CreateTimer() | Sets up a timer that executes a macro at fixed-time intervals |
| DestroyTimer() | Cancels a timer that executes a macro at fixed-time intervals |
| Pause() | Uses a timer to go into a waiting loop that yields to other processes, allowing Windows messages to be dispatched while waiting |
| Sleep() | Uses a timer to go into a busy waiting loop that yields to other processes |