The Delay function stops the execution of the current process for a specified period of time. The delay is terminated when its specified time has passed, or with the first user keystroke.
Syntax:
Delay (tenth of seconds)
Parameters:
tenth of seconds: Number of tenths of seconds to delay the current process.
Returns:
True
Example:
Delay(10) will cause a 1.0 second delay, and then the calling process will resume. If a key is pressed while the delay function is active, the delay will be immediately terminated.