ReplaceDebugLine

From SCAR Divi Manual
Revision as of 11:56, 25 July 2012 by Freddy (talk | contribs)
Jump to: navigation, search

Definition

procedure ReplaceDebugLine(const Line: Integer; const Str: AnsiString);

Availability

SCAR Divi 3.00 > 3.35

Description

This function replaces a line given by Line in the debug box by a string given by Str.

Example

begin
  ClearDebug;
  WriteLn('Hello');
  WriteLn('!!!');
  ReplaceDebugLine(1, 'World!');
end.

Output:

Hello
World!

See Also