System.Sleep(Integer) Method
Version: Available or changed with runtime version 1.0.
Returns control to the operating system for a specified time.
Syntax
System.Sleep(Duration: Integer)
Note
This method can be invoked without specifying the data type name.
Parameters
Duration
Type: Integer
The number of milliseconds to return control to the operating system.
Remarks
When you use the Sleep method, control is guaranteed to return to the operating system for at least Duration milliseconds.
Note
The period may be longer than Duration milliseconds, depending on what the operating system is doing at the time that control is to return to the caller.