Click or drag to resize

MotionSystemIncrementalMode Property

Gets or sets the incremental jogging mode.

Namespace:  ABB.Robotics.Controllers.MotionDomain
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public IncrementalModeType IncrementalMode { get; set; }

Property Value

Type: IncrementalModeType
The current incremental jogging mode.
Examples
This example sets the incremental mode to small.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
motion.IncrementalMode = IncrementalModeType.Small;
See Also