Difference between revisions of "GetDebugLineCount"
From SCAR Divi Manual
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.10 > 3. | + | SCAR Divi 3.10 > 3.34 |
==Description== | ==Description== | ||
Returns the number of lines displayed in the debug box. | Returns the number of lines displayed in the debug box. |
Latest revision as of 11:11, 25 July 2012
Definition
function GetDebugLineCount: Integer;
Availability
SCAR Divi 3.10 > 3.34
Description
Returns the number of lines displayed in the debug box.
Example
begin ClearDebug; WriteLn('Hello'); WriteLn('World'); WriteLn(GetDebugLineCount); end.
Output:
Hello World 2