Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- GetIt Reference Guide - syntax: n_schar([<rown>,<coln> [,<lenn>]]) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Syntax: N_SCHAR([<rowN>,<colN> [,<lenN>]])

Returns screen character(s) starting at specified position.

Example

@ 10,20 SAY "Hi!"
@ 10,20 SAY ""
? N_SCHAR(10,20)
  H
? N_SCHAR(10,20,3)
  Hi!

Notes

If no parameters are specified, the current cursor location is assumed.

If an invalid cursor coordinate is specified, null string ("") is returned.

If <len> is specified, the specified number of characters starting at the
specified location are returned.  There is no screen-wrap, e.g.,
N_SCHAR(24,78,4) only returns 2 characters (at 24,78 and 24,79).

See Also: N_GETROW N_GETCOL N_SCOLOR

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