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

 DESCRIPTION

 C_LINE() draws a single or double horizontal line starting at a
 given row and column and ending at the specified ending column.
 The line will automatically connect with any line or box characters
 in the drawing path, using the correct graphics characters for the
 connection, and in the current screen color.

 SYNTAX

 C_LINE(st_row, st_col, end_col [,line_type])

 PARAMETERS

 st_row (N) is the starting row for the line.

 st_col (N) is the starting column for the line.

 end_col (N) is the ending column for the line.

 line_type (N) is the type of line to draw:  1 = single line, 2 =
 double line.  If line_type is not specified, the line will be drawn
 as a single line.

 RETURNS

 There is no return value.

 EXAMPLES

 && Draws a single line at row 10, starting at column 0 and ending
 && at column 79
 c_line(10,0,79)

 && Draws a double line at row 0, starting at column 10 and ending
 && at column 70
 c_line(0,10,70,2)


See Also: C_VLINE() C_VREPL()

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