Source: factory.export/ObjDataExportCsv.py
Provides functionalities for exporting data to a delimited file format, typically CSV.
This class allows the user to open a file for writing, write headers and data,
handle CSV-specific escaping rules, and close the file. It supports customization
of the delimiter and quote character used when writing data. The primary purpose is
...
| Method | Signature | Description |
|---|---|---|
| OpenFile | OpenFile(filename) |
|
| CloseFile | CloseFile() |
|
| WriteHeader | WriteHeader(HeaderFields) |
|
| WriteData | WriteData(Data) |
|
| EscapeCSV | EscapeCSV(val) |
|
| DefaultExtension | DefaultExtension() |