Click or drag to resize

MechanicalUnitMotionMode Property

Gets or sets the motion mode type for jogging of the robot.

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

Property Value

Type: MotionModeType
The associated motion mode type of the mechanical unit.
Exceptions
ExceptionCondition
ResourceHeldExceptionWe are unable to take mastership.
ArgumentExceptionThe selected motion mode is not valid for this mechanical unit.
Remarks
A robot supports all motion modes.
Examples
This example sets the motion mode type of the active mechanical unit to linear.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
MechanicalUnit mech = motion.GetActiveMechanicalUnit();
mech.MotionMode = MotionModeType.Linear;
See Also