Difference between revisions of "ClearDebug"
From SCAR Divi Manual
(→See Also) |
(→See Also) |
||
Line 26: | Line 26: | ||
*[[DeleteDebugLine]] | *[[DeleteDebugLine]] | ||
*[[ClearDebugLine]] | *[[ClearDebugLine]] | ||
+ | *[[GetDebugLineCount]] | ||
*[[WriteLn]] | *[[WriteLn]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] |
Revision as of 21:33, 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!