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 public MotionModeType MotionMode { get; set; }
Property Value
Type:
MotionModeType The associated motion mode type of the mechanical unit.
Exceptions 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