Difference between revisions of "GetDebugLineCount"
From SCAR Divi Manual
| Line 6: | Line 6: | ||
==Availability== | ==Availability== | ||
SCAR Divi 3.10 > Current | SCAR Divi 3.10 > Current | ||
| − | |||
| − | |||
==Description== | ==Description== | ||
Revision as of 22:56, 27 June 2011
Definition
function GetDebugLineCount: Integer;
Availability
SCAR Divi 3.10 > Current
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