Util.Pause

Top  Previous  Next

 

Syntax

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

 

Alternative Names

Util.Sleep
ibec_Pause
ibec_Sleep

 

Description

Pauses the script execution for the given duration in milliseconds.

 

The Return Value is NULL.

 

Example

execute UDSBlock

as

begin

  Util.Pause(2000);

  

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

end