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_vrepl() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_VREPL()

 DESCRIPTION

 The C_VREPL() function replicates a character vertically on the
 screen for a specified number of times, starting at the given row
 and column.

 NOTES

 C_VREPL() replicates characters from the top of the display
 downward, so coordinates should always start at the top of the screen.

 SYNTAX

 C_VREPL(row, column, character, count [,color])

 PARAMETERS

 row (N) is the starting row to begin replicating.

 column (N) is the starting column to begin replicating.

 character (C) is the single character to replicate vertically.

 count (N) is the number of times to replicate the character.

 color (C/N) is the color to display character.  The color argument
 can be specified as a dBASE/Clipper color string or a numeric color
 code (see Appendix E).  If color is not specified, the color is not set.

 RETURNS

 There is no return value.

 EXAMPLES

 && Puts asterisks in column 0 from top to bottom
 c_vrepl(0,0,"*",24)

 && Puts graphics character 177 in column 40 starting at row 10 down
 && to row 20
 c_vrepl(10,40,chr(177),10)


See Also: C_VLINE() C_LINE() C_STRING()

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