< Futurebasic < Language < Reference
LINE INPUT
Syntax
LINE INPUT [@(col,row)|%(h,v)] ["prompt";]stringVar$
Description
This statement behaves similarly to the INPUT
statement, except that the entire line of text entered by the user (including any commas, quotes and leading spaces) is stored into the single variable stringVar$
. See the INPUT
statement for a description of the parameters that precede stringVar$
.
Note:
INPUT
and LINE INPUT
are considered rather "old-fashioned" ways to interact with the user. Programs with good user-interface design usually utilize Edit Fields instead.
See Also
INPUT; LINE INPUT#; EDIT FIELD
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.