[]
Option class for saving csv file.
public class CsvSaveOptions : SaveOptionsBase
Public Class CsvSaveOptions
Inherits SaveOptionsBase
Name | Description |
---|---|
CsvSaveOptions() | Constructor. |
Name | Description |
---|---|
CellSeparator | Gets or sets a char value as cell separator. |
ColumnSeparator | Gets or sets a string value as column separator. |
Encoding | Gets or sets the default encoding, default is utf-8. |
QuoteColumns | Specify some columns to be quoted, while the remaining columns not to be quoted. Column numbers start from 0, and specifying invalid column has no effect. |
RowSeparator | Gets or sets a string value as row separator. |
SeparatorString | Gets or sets a string value as column separator. |
TrimLeadingBlankRowAndColumn | Indicates whether leading blank rows and columns should be trimmed like what ms excel does.Defalut is true; |
ValueQuoteType | Gets or sets how to quote values in the exported text file. |