[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'Crt' (#rtl) |
Clear current window.
Source position: crth.inc line 78
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.
No notes exist for this page yet.