CsvFileOutputRecordStream.WriteLine
- Updated2025-07-21
- 1 minute(s) read
CsvFileOutputRecordStream.WriteLine
Syntax
CsvFileOutputRecordStream.WriteLine( lineString)
Purpose
Write a line of text to the file. A line feed is appended automatically.
Remarks
WriteLine provides a lower level interface to the underlying file than OutputRecordStream.WriteRecord . The specified string plus a linefeed is written directly to the file without further processing or escaping. Use this method to add formatting or other non-record data to the CSV file.
Parameters
lineString As String
[In] The string to write.