CsvFileInputRecordStream.ReadLine
- Updated2025-07-21
- 1 minute(s) read
CsvFileInputRecordStream.ReadLine
Syntax
CsvFileInputRecordStream.ReadLine( lineString)
Return Value
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.
Parameters
lineString As String
[Out] Outputs the next line from the CSV file.