MechanicalUnitIsCalibrated Property |
Specifies whether the mechanical unit is calibrated or not.
Namespace:
ABB.Robotics.Controllers.MotionDomain
Assembly:
ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax public bool IsCalibrated { get; }
Property Value
Type:
BooleanReturns TRUE if the mechanical unit is calibrated, FALSE if not.
Examples This example checks if the active mechanical unit is calibrated.
Controller c = new Controller();
MotionSystem motion = c.MotionSystem;
MechanicalUnit mech = motion.GetActiveMechanicalUnit();
if (mech.IsCalibrated)
{
}
See Also