Difference between revisions of "ClearDebugLine"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ClearDebugLine(const Line: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description== This functi...") |
|||
| (3 intermediate revisions by the same user not shown) | |||
| Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
| − | SCAR Divi 3.00 > | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== | ||
| Line 15: | Line 15: | ||
ClearDebug; | ClearDebug; | ||
WriteLn('Hello'); | WriteLn('Hello'); | ||
| − | WriteLn('World'); | + | WriteLn('World!'); |
| + | WriteLn('!!!'); | ||
ClearDebugLine(1); | ClearDebugLine(1); | ||
end. | end. | ||
| Line 21: | Line 22: | ||
Output: | Output: | ||
| + | Hello | ||
| − | + | !!! | |
==See Also== | ==See Also== | ||
| Line 31: | Line 33: | ||
*[[WriteLn]] | *[[WriteLn]] | ||
| − | [[Category: | + | [[Category:Deprecated Functions]] |
| − | |||
Latest revision as of 11:09, 25 July 2012
Definition
procedure ClearDebugLine(const Line: Integer);
Availability
SCAR Divi 3.00 > 3.34
Description
This function clears a line given by Line in the debug box. Unlike DeleteDebugLine this function does not remove the line, it only clears it, leaving an empty line.
Example
begin
ClearDebug;
WriteLn('Hello');
WriteLn('World!');
WriteLn('!!!');
ClearDebugLine(1);
end.Output:
Hello !!!