Setting for when adTempus considers a process to be started and continues with processing for the step
enum WaitOptionsEnum { woNoWait = 0, woWaitForSpecifiedTime = 1, woWaitForInputIdle = 2 };
public enum WaitOptionsEnum { woNoWait = 0, woWaitForSpecifiedTime = 1, woWaitForInputIdle = 2 }
Public Enum WaitOptionsEnum woNoWait = 0 woWaitForSpecifiedTime = 1 woWaitForInputIdle = 2 End Enum
Members |
Description |
woNoWait = 0 |
adTempus continues execution as soon as the process starts. |
woWaitForSpecifiedTime = 1 |
adTempus waits for a specified number of seconds after the process starts. |
woWaitForInputIdle = 2 |
adTempus waits until the program has initialized its message loop and started accepting UI messages. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|