ClrScr
Clear current window.
Declaration
Source position: crth.inc line 86
  procedure ClrScr;
Description
ClrScr clears the current window (using the current colors), and sets the cursor in the top left corner of the current window.
Errors
None.
See also
| Name | Description | 
|---|---|
| Window | Create new window on screen. | 
Example
Program Example8;
uses Crt;
{ Program to demonstrate the ClrScr function. }
begin
  Writeln('Press any key to clear the screen');
  ReadKey;
  ClrScr;
  Writeln('Have fun with the cleared screen');
end.