Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper 5.2 . The Guide To CA-Clippe - <b>@...clear</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 @...CLEAR
 Clear a rectangular region of the screen
------------------------------------------------------------------------------
 Syntax

     @ <nTop>, <nLeft> [CLEAR
        [TO <nBottom>, <nRight>]]

 Arguments

     <nTop> and <nLeft> define the upper left corner coordinate.

     TO <nBottom>, <nRight> defines the lower right corner coordinates of
     the screen region to CLEAR.  If the TO clause is not specified, these
     coordinates default to MAXROW() and MAXCOL().

 Description

     @...CLEAR erases a rectangular region of the screen by filling the
     specified region with space characters using the current standard color
     setting.  After @...CLEAR erases the designated region, the cursor is
     located in the upper corner of the region at <nTop> + 1 and <nLeft> + 1.
     ROW() and COL() are also updated to reflect the new cursor position.

 Examples

     .  This example erases the screen from 10, 10 to 20, 40, painting
        the region blue then displaying a box bright cyan on blue:

        SETCOLOR("BG+/B")
        @ 10, 10 CLEAR TO 20, 40
        @ 10, 10 TO 20, 40

 Files:  Library is CLIPPER.LIB.

See Also: @...BOX CLEAR SCREEN SCROLL() SETCOLOR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson