Click or drag to resize

RapidResetProgramPointer Method

Resets the program pointer of all active tasks to their respective main routine

Namespace:  ABB.Robotics.Controllers.RapidDomain
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public void ResetProgramPointer()
Examples
This example stops execution of all the tasks and sets all the program pointer to main entry points.
using ABB.Robotics;
using ABB.Robotics.Controllers;
using ABB.Robotics.Controllers.RapidDomain;
...
Controller c = new Controller();
Rapid rapid = c.Rapid;
...
rapid.ResetProgramPointer();
See Also