GetDebugLineCount

From SCAR Divi Manual
Revision as of 11:11, 25 July 2012 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

See Also