next up previous contents index
Next: ClrScr Up: Procedures and Functions Previous: BigCursor

ClrEol

   

Declaration:

Procedure ClrEol ;

Description:

ClrEol clears the current line, starting from the cursor position, to the end of the window. The cursor doesn't move

Errors:

None.

See also:

DelLine, InsLine, ClrScr

Example
Program Example9;
uses Crt;

{ Program to demonstrate the ClrEol function. }

begin
  Write('This line will be cleared from the',
        ' cursor postion until the right of the screen');
  GotoXY(27,WhereY);
  ReadKey;
  ClrEol;
  WriteLn;
end.



Michael Van Canneyt
Thu Sep 10 13:59:33 CEST 1998