Flag which indicates, whether axis is in velocity or not.

Namespace: EAL.Interfaces.Motion
Assembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)

Syntax

C#
bool InVelocity { get; }
Visual Basic
ReadOnly Property InVelocity As Boolean
	Get
Visual C++
property bool InVelocity {
	bool get ();
}

Property Value

Type: Boolean

Examples

 Copy imageCopy
private void Method09()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        // Connects
        ealConnection.Connect("192.168.0.10");
       // Gets axis
        IAxis axis = ealConnection.Motion.Axes[0];
        // Read inVelocity flag
        bool inVelocity = axis.InVelocity;
    }
}

See Also