EStopOn Property
Description
Returns the status of the Controller's emergency stop.
Syntax
ReadOnly Property EStopOn As Boolean
Return Value
True if the emergency stop is active, False if not.
EStopOn Example
VB Example:
If m_spel.EStopOn Then
lblEStop.Text = "Emergency stop is active"
Else
lblEStop.Text = ""
EndIf
C# Example:
if (m_spel.EStopOn)
lblEStop.Text = "Emergency stop is active";
else
lblEStop.Text = "";