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

 DESCRIPTION

 C_TEXT() displays a character string at a given row and column in a
 variety of different attributes.  The string can be displayed in
 the current color, in a single or double box, in high intensity
 color, or in reverse video.  C_TEXT() can optionally center the
 text in the middle of the screen at a specified row.

 SYNTAX

 C_TEXT(row, col, attr, string)

 PARAMETERS

 row (N) is the starting row to display the string.

 col (N) is the starting column to display the string.  To center
 the text, pass a negative one (-1) instead of a column number.

 attr (N) is the type of attribute (0 to 4) to display, as follows:

 TYPE   DISPLAY ATTRIBUTE FOR CHARACTER STRING
 ----   --------------------------------------
 0      Normal, same color as current Clipper color
 1      Single line box, same color as current Clipper color
 2      Double line box, same color as current Clipper color
 3      High intensity of current Clipper color
 4      Reverse of current Clipper color

 string (C) is the character string to display.

 RETURNS

 There is no return value.

 EXAMPLES

 c_text(10,25,2,"Display inside a double line box")

 c_text(14,25,4,"Display in reverse video")

 c_text(18,-1,3,"Display in high intensity, centered on screen")


See Also: C_SAYTEXT() C_STRING() C_MSG() C_ERR() C_CENTER()

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