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_getpic([<getn>|<variablec> [,<picturec>]]) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Syntax: N_GETPIC([<getN>|<variableC> [,<pictureC>]])

Returns and optionally modifies the picture of the specified Get.

Example

@ 1,0 SAY "SS Number:" GET Mssno PICTURE "999-99-9999"
@ 2,0 SAY "Name     :" GET Mname
READ

PROCEDURE HELP
? N_GETPIC(1)
  999-99-9999
? N_GETPIC("Mssno")
  999-99-9999
? N_GETPIC(2)
  <null string>
RETURN

Notes

If no parameter is specified then the currently active Get is assumed.  If
an invalid Get is specified or if no Gets are active then a null string
("") is returned.

If a new picture clause is specified, then first parameter cannot be
omitted.  Use N_GETNO() to modify the current Get's picture, e.g.,

     N_GETPIC(N_GETNO(),"999 / 99 / 9999").

See Also: N_GETCOL N_GETROW

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