Util.Sleep

Top  Previous  Next

 

Syntax

function Util.Sleep(SleepFor: positive-integer): variant

 

Alternative Names

Util.Pause
ibec_Sleep
ibec_Pause

 

Description

Pauses the script execution for the given duration in milliseconds.

 

The Return Value is NULL.

 

Example

execute UDSBlock

as

begin

  Util.Sleep(2000);

  

  GUI.ShowMessage('The script was paused for 2 seconds.');

end