Flag which indicates, whether torque high limit is active or not.
Namespace: EAL.Interfaces.MotionAssembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)
Syntax
C# |
---|
bool IsTorqueHighLimitActive { get; } |
Visual Basic |
---|
ReadOnly Property IsTorqueHighLimitActive As Boolean
Get |
Visual C++ |
---|
property bool IsTorqueHighLimitActive {
bool get ();
} |
Property Value
Type:
Boolean
Examples
| Copy |
---|
private void Method12()
{
using (IEALConnection ealConnection = new EALConnection())
{
ealConnection.Connect("192.168.0.10");
IAxis axis = ealConnection.Motion.Axes[0];
bool isTorqueHighLimitActive = axis.IsTorqueHighLimitActive;
}
} |
See Also