Futurebasic/Language/Reference/line input
LINE INPUT
editSyntax
editLINE INPUT [@(col,row)|%(h,v)] ["prompt";]stringVar$
Description
editThis 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
editINPUT; LINE INPUT#; EDIT FIELD