Difference between revisions of "GetDebugLineCount"
From SCAR Divi Manual
| (3 intermediate revisions by the same user not shown) | |||
| Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
| − | SCAR Divi 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. | ||
| Line 31: | Line 30: | ||
*[[WriteLn]] | *[[WriteLn]] | ||
| − | [[Category: | + | [[Category:Deprecated Functions]] |
| − | |||
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