Flag which indicates, whether any error in the process controller. True, if any error, else false.

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

Syntax

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

Property Value

Type: Boolean

Examples

 Copy imageCopy
private void Sample()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        // Connects
        ealConnection.Connect("192.168.0.10");
        // Gets axis
        IAxis axis = ealConnection.Motion.Axes[0]; 
        // Gets IsProcessControlError flag
        bool isProcessControlError = axis.ProcessControl.IsProcessControlError;
    }
}

See Also