DeleteDebugLine

From SCAR Divi Manual
Revision as of 11:49, 4 September 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure DeleteDebugLine(const Line: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description== This funct...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure DeleteDebugLine(const Line: Integer);

Availability

SCAR Divi 3.00 > Current

Description

This function deletes a line given by Line in the debug box.

Example

begin
  ClearDebug;
  WriteLn('Hello');
  WriteLn('World!');
  WriteLn('!!!');
  DeleteDebugLine(2);
end.

Output:

Hello
World!

See Also