Gets active parameter set number.

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

Syntax

C#
int GetActiveParameterSetNumber()
Visual Basic
Function GetActiveParameterSetNumber As Integer
Visual C++
int GetActiveParameterSetNumber()

Return Value

Type: Int32
Active parameter set number

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]; 
        // Read active parameter set number
        int activeParameterSetNumber = axis.ProcessControl.GetActiveParameterSetNumber();
    }
}

See Also