LOTUSSCRIPT LANGUAGE


Line Input # statement
Example

Reads a line from a sequential file into a String or Variant variable.

Syntax

Line Input #fileNumber , varName

Elements

#fileNumber


varName
Usage

Line Input # reads characters from a sequential file until it encounters a newline character. Line Input # does not read the newline character into the variable.

When reading a multiline string from a sequential file, use the Input # statement, not the Line Input # statement.

Example
See Also