Difference between revisions of "GetDebugLineCount"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function GetDebugLineCount: Integer; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== This function clears ...") |
(No difference)
|
Revision as of 21:33, 27 June 2011
Definition
function GetDebugLineCount: Integer;
Availability
SCAR Divi 3.00 > Current
Description
This function clears all content currently present in the debug box.
Example
begin ClearDebug; WriteLn('Hello'); WriteLn('World'); WriteLn(GetDebugLineCount); end.
Output:
Hello World 2