MechanicalUnitName Property |
Gets the name of the mechanical unit.
Namespace:
ABB.Robotics.Controllers.MotionDomain
Assembly:
ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntaxpublic string Name { get; }Property Value
Type:
StringThe name associated with the mechanical unit.
ExamplesThis example gets the name of the active mechanical unit.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
MechanicalUnit mech = motion.GetActiveMechanicalUnit();
string name = mech.Name;
See Also