Difference between revisions of "GetDebugLineCount"
From SCAR Divi Manual
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.10 > | + | SCAR Divi 3.10 > 3.35 |
− | |||
==Description== | ==Description== | ||
Returns the number of lines displayed in the debug box. | Returns the number of lines displayed in the debug box. | ||
Line 31: | Line 30: | ||
*[[WriteLn]] | *[[WriteLn]] | ||
− | [[Category: | + | [[Category:Deprecated Functions]] |
− |
Revision as of 17:36, 1 June 2012
Definition
function GetDebugLineCount: Integer;
Availability
SCAR Divi 3.10 > 3.35
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