Enum eStepStatus
Describes the step status inside the sequencer.
Namespace: TcoCore
Assembly: TcoCoreConnector.dll
Syntax
public enum eStepStatus
Fields
Name | Description |
---|---|
Disabled | Step is disabled and won't be executed. Next enabled step in the sequence will be executed, when the sequencer reaches that step. |
Done | Step has finished (The body statements are not running). |
Error | Step is in error state. The sequencer does not execute any step logic. |
None | No status defined. |
ReadyToRun | Step is ready to run. This case occurs when sequence is in step mode, step is in order of the execution and step is enabled. The body statements of the current step's are not executing. After calling StepIn method, step starts running the statements. |
Running | Step is currently running (The body statements are running). |