Difference between revisions of "GetDebugLineCount"

From SCAR Divi Manual
Jump to: navigation, search
Line 5: Line 5:
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.10 > Current
 +
 
 +
*The function was available before 3.10, but an exact version is not known.
  
 
==Description==
 
==Description==

Revision as of 22:41, 27 June 2011

Definition

function GetDebugLineCount: Integer;

Availability

SCAR Divi 3.10 > Current

  • The function was available before 3.10, but an exact version is not known.

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