[Overview][Constants][Types][Procedures and functions][Variables][Index] |
Clear current window.
Source position: crth.inc line 86
procedure ClrScr; |
ClrScr clears the current window (using the current colors), and sets the cursor in the top left corner of the current window.
None.
|
Create new window on screen. |
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.