Click or drag to resize

MechanicalUnitType Property

Gets the mechanical unit type.

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

Property Value

Type: MechanicalUnitType
One of the predefined types associated with a mechanical unit.
Examples
This example gets the type of the active mechanical unit.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
MechanicalUnit mech = motion.GetActiveMechanicalUnit();
MechanicalUnitType name = mech.Type;
See Also