Difference between revisions of "ClearTimeouts"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ClearTimeouts; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Clears all timeout functions base...")
 
(No difference)

Latest revision as of 11:59, 4 September 2011

Definition

procedure ClearTimeouts;

Availability

SCAR Divi 3.00 > Current

Description

Clears all timeout functions based on it's index given by Index.

Example

procedure Timeout;
begin
  WriteLn('Timeout');
end;

begin
  WriteLn('Hello World!');
  SetTimeout(1000, 'Timeout');
  ClearTimeouts;
  Wait(3000);
end.

Output:

Hello World!

See Also