Save the CSV data to stream.
Source position: csvdocument.pp line 101
public procedure TCSVDocument.SaveToStream( |
AStream: TStream |
); |
AStream |
|
Stream to write CSV data to. |
SaveToStream saves the CSV data to the aStream stream. It uses the settings introduced in TCSVHandler to apply the correct formatting to fields and rows. If EqualColCountPerRow is True then it will add empty cells prior to writing, so all rows in the file have an equal count of columns.
If the stream cannot be written to, an exception will be raised.
|
Ensure every row has an equal amount of columns. |
|
|
Save to file on disk. |
|
|
Load CSV data from a stream. |
|
|
Load a CSV file into the document. |
|
|
Base class for CSV reading and writing classes. |