FT_CLS

FT_CLS()
 Clear screen

 Syntax

      FT_CLS( <nTRow>, <nLCol>, <nBRow>, <nRCol>, <nColor> ) -> NIL

 Arguments

     <nTRow>, <nLCol>, <nBRow> and  <nRCol> are the screen coordinates
     to clear.

     <nColor> is an integer representing the color attribute.
     The formula is:

       nFore + ( nBack * 16 )

     The default is black.

 Returns

     NIL

 Description

     This is a high speed function to clear the screen at the given
     coordinates with the given color attribute.  This does not change
     Clipper's color settings.  It uses direct video writes for speed.

 Examples

     FT_CLS( 0, 0, MaxRow(), MaxCol(), 165 )

     This example will clear the entire screen with the colors
     bright white on magenta.

 Source: VIDEO1.C

 Author: Robert A. DiFalco

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.