CsvFileInputRecordStream.ReadLine

Syntax

CsvFileInputRecordStream.ReadLine( lineString)

Return Value

Long

Returns 0 if a line of text was successfully read. Returns non-zero if end of file is encountered.

Purpose

Read the next line of text from the underlying file.

Remarks

CsvFileInputRecordStream.ReadLine provides a lower level interface to the underlying file than ReadRecord . The next line of text from the file is stored directly to the lineString parameter with no additional processing.

Note CsvFileInputRecordStream.ReadLine has no special behavior for end of table the way CsvFileInputRecordStream.ReadRecord does.

Parameters

lineString As String

[Out] Outputs the next line from the CSV file.

See Also

CsvFileInputRecordStream.SkipLines

CsvFileOutputRecordStream.WriteLine