Thread.Kill
From Xojo Documentation
This item was deprecated in version 2019r2. Please use Thread.Stop as a replacement. |
Method
Kills the specified thread.
Notes
Internally, this method will cause your thread’s stack to unwind, destructors for local objects to be called, and so forth. It's a graceful exit which can cause code to execute. It may also cause context switches.
A thread should not kill itself. Instead, just return from the Run event handler to allow the thread to terminate. |
Example
This example, which is in the Action event of a button, kills the thread.
LongProcessThread1.Kill