ExportToCsvOptions class | QSYS API Reference Guide
Provides options for exporting data to CSV format. This class includes properties for specifying whether field names should be included, whether trailing delimiters should be omitted, and what characters should be used for text delimiters, field delimiters, and decimal points in the exported data.
Namespace: ASNA.DataGate.Client.CopyData Assembly: ASNA.QSys.DataGate.Client.dll
Inheritance: Object –> ExportOptions
Constructors
Name | Description |
---|---|
ExportToCsvOptions(IMember, String, ExportAccessMode) | Initializes a new instance of the class. |
ExportToCsvOptions(IMember, String, ExportAccessMode)
Initializes a new instance of the class.
ExportToCsvOptions(IMember, String, ExportAccessMode)
Parameters
Type | Parameter name | Description |
---|---|---|
IMember | src | The source data to be exported. |
String | target | The target path where the data will be exported. |
ExportAccessMode | seq | The access mode for data export. |
Properties
Type | Name | Description |
---|---|---|
Char | DecimalPoint | Gets or sets the decimal point character to be used in the exported CSV data. |
Nullable<Char> | FieldDelimiter | Gets or sets the field delimiter to be used in the exported CSV data. |
Boolean | IncludeNames | Gets or sets a value indicating whether field names should be included in the exported CSV data. |
Boolean | OmitTrailingDelimiter | Gets or sets a value indicating whether trailing delimiters should be omitted in the exported CSV data. |
Nullable<Char> | TextDelimiter | Gets or sets the text delimiter to be used in the exported CSV data. |