Gets and sets the currently remaining execution cycles of all RAPID tasks
Namespace:
ABB.Robotics.Controllers.RapidDomain
Assembly:
ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntaxpublic ExecutionCycle Cycle { get; set; }Property Value
Type:
ExecutionCycleThe number of remaining execution cycles. If not all tasks have the same value,
Undefined will be returned.
Exceptions
Remarks
ExamplesThis example sets the cycle to 10, and after 10 cycles rapid program will stop
using ABB.Robotics;
using ABB.Robotics.Controllers;
using ABB.Robotics.Controllers.RapidDomain;
...
Controller c = new Controller();
Rapid rapid = c.Rapid;
...
rapid.Cycle = (ExecutionCycle)10;
...
See Also