Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>restscreen()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
RESTSCREEN()


Syntax:     RESTSCREEN(<expN1>, <expN2>, <expN3>, <expN4>, <expC>)

Purpose:    To display a previously saved screen region to a specified
            screen area.

Arguments:  <expN1...expN4> are the screen coordinates to display
            screen data contained in <expC>.

            <expC> is a character string containing the screen data
            to display.

Returns:    There is no return value.

Usage:      RESTSCREEN() is used to redisplay a screen region saved with
            SAVESCREEN().  The screen location to restore may be the
            same or different.  If you specify a new screen location, be
            sure the new screen region is the same size or you will get
            ambiguous results.  In addition, do not use RESTORE SCREEN
            to restore screen regions saved with SAVESCREEN() or you
            will get equally ambiguous results.

            Warning: SAVE SCREEN, RESTORE SCREEN, SAVESCREEN(), and
            RESTSCREEN() are not supported when either ANSI.OBJ or
            IBMANSI.OBJ is linked into the current program.

Library:    EXTEND.LIB


----------------------------------- Example --------------------------------

   winbuff = SAVESCREEN(1, 1, 20, 40)

   <statements>...

   RESTSCREEN(1, 1, 20, 40, winbuff)


See Also: RESTORE SCREEN SAVE SCREEN SAVESCREEN()

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