Halt Method
Description
Suspends execution of the specified task.
Syntax
Sub Halt (TaskNumber As Integer)
Sub Halt (TaskName As String)
Parameters
- TaskNumber
The task number of the task to be paused (1 to 32). - TaskName
A string expression indicating the task name to be paused.
Note
The function executed by Call method cannot be paused by Halt method.
If you need to pause, use Xqt Method.
See Also
Resume Method, Xqt Method
Halt Example
VB Example:
m_spel.Halt(3)
C# Example:
m_spel.Halt(3);
← H Here Method →