Difference between revisions of "ClearDebug"

From SCAR Divi Manual
Jump to: navigation, search
(See Also)
(See Also)
 
(One intermediate revision by the same user not shown)
Line 26: Line 26:
 
*[[DeleteDebugLine]]
 
*[[DeleteDebugLine]]
 
*[[ClearDebugLine]]
 
*[[ClearDebugLine]]
 +
*[[GetDebugLineCount]]
 +
*[[GetDebugText]]
 
*[[WriteLn]]
 
*[[WriteLn]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:GUI Functions]]
 
[[Category:GUI Functions]]

Latest revision as of 22:34, 27 June 2011

Definition

procedure ClearDebug;

Availability

SCAR Divi 3.00 > Current

Description

This function clears all content currently present in the debug box.

Example

begin
  WriteLn('Clearing the debug box in 2 seconds!');
  Wait(2000);
  ClearDebug;
  WriteLn('Hello World!');
end.

Output:

Hello World!

See Also