Click or drag to resize

MechanicalUnitCoordinateSystem Property

Gets or sets the coordinate system mode for jogging of the active mechanical unit.

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

Property Value

Type: CoordinateSystemType
The associated coordinated system of the mechanical unit.
Exceptions
ExceptionCondition
ResourceHeldExceptionWe are unable to take mastership.
InvalidOperationExceptionThe mechanical unit is not of correct type, i.e. MechanicalUnitType.TCPRobot.
Remarks
Only supported by mechanical unit type TCPRobot. A robot supports all coordinates modes.
Examples
This example sets the coordinate system to world for the active mechanical unit.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
MechanicalUnit mech = motion.GetActiveMechanicalUnit();
mech.CoordinateSystem = CoordinateSystemType.World;
See Also