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

 DESCRIPTION

 C_STRING() displays a character string on the screen starting at a
 specified row and column.  The string can be displayed in any
 direction, right, left, up, or down.

 SYNTAX

 C_STRING(row, column, string [,direction] [,gap])

 PARAMETERS

 row (N) is the starting row position on the screen.

 column (N) is the starting column position on the screen.

 string (C) is the character string to display.

 direction (C/N) is the direction to display the string from the
 starting row and column position.  If direction is not specified,
 the default direction of right is used.  The following are the
 codes for the directions:

 CODE         DIRECTION TO DISPLAY
 ----         --------------------
 "R" or 0     Right
 "L" or 1     Left
 "U" or 2     Up
 "D" or 3     Down

 gap (N) is the gap of spaces between each character in the string.
 The gap can be from 0 (no spaces) to any number of spaces that will
 fit on the screen.  If gap is not specified, the default of 0 (no
 spaces) is used.

 RETURNS

 There is no return value.

 EXAMPLES

 && Displays the word "month" in an upward direction starting at row 20,
 && column 2 with 2 spaces between each letter

 c_string(20,2,"MONTH","U",2)


See Also: C_SAYTEXT() C_TEXT()

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