Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_fill() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_FILL()

 DESCRIPTION

 The C_FILL() function fills the area specified by the screen
 coordinates with a given color and can also fill the area with a
 background character.

 SYNTAX

 C_FILL(st_row, st_col, end_row, end_col [,color] [,char])

 PARAMETERS

 st_row (N), st_col (N), end_row (N), and end_col (N) define the
 upper left and lower right screen coordinates to fill.

 color (C) is the color to fill the screen area.  If color is not
 specified, the current Clipper color is used.

 char (C) is the background character to fill in the screen area.
 If char is not specified, no background character is used.

 RETURNS

 There is no return value.

 EXAMPLES

 setcolor("W/R")         && Set color
 c_fill(10,10,20,70)     && Fill area with default color

 && Fill area with color and character
 c_fill(10,10,20,70,"W/B",chr(178))


See Also: C_SETATTR() C_BOX() C_CHGATTR() C_GETATTR() C_CLS()

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