ID : 144
GiveArm
Function
To release control of the currently-acquired arm group expressly.
Syntax
GiveArm
Description
Control of the currently-acquired arm group is expressly released.
Control of the arm group that each task acquired is automatically released after completion of the task. Use the GiveArm statement only when you want to expressly release control in order to acquire control of a different arm group for the same task or to pass control to a different task.
Related Terms
Attention
Control acquisition cannot be nested. GiveArm statement in running status will make the task "figure" which does not have control.
Example
'!TITLE "Releasing Arm Group"
' Release currently acquired arm group
Sub Sample_GiveArm
GiveArm
End Sub
ID : 144