[]
CsvRenderingExtension settings class
public class CsvRenderingExtension.Settings : ConfigurableRenderingExtension<CsvRenderingExtension.Settings>.SettingsBase
Name | Description |
---|---|
Settings() | Initializes new Settings instance with default properties values. |
Name | Description |
---|---|
ColumnsDelimiter | The string to be placed between fields in data row. |
DateTimeFormat | Default format for date values. See also "Custom date and time format strings". Suggested to specify something like "yyyy-MM-dd". |
Encoding | The result file encoding. |
NoHeader | Determines whether CSV Header should be omitted. |
NumericFormat | Default format for numeric values. See also "Custom numeric format strings". Suggested to specify something like "0.####". |
QuotationMode | If QuotationMode.AutoQuote than simple values will be exported without quotes. If QuotationMode.AlwaysQuote than all exported values will always be quoted. |
QuotationSymbol | The quotation symbol. |
RowsDelimiter | The string to be placed between data rows. |