Hold
Function
To hold execution of the own task.
Syntax
Hold
Description
Execution of the own task is held.
Attention
-
Example
'!TITLE "Holding Program Execution"
' Set the system in step stop status and display a message
Sub Sample_Hold
Dim aaa As Integer
Dim bbb As Integer
aaa = 10
bbb = 20
' Display "30" on the message output window
Hold aaa + bbb
' Display "stop" on the message output window
Hold "stop"
End Sub
