[]
Option class for opening csv file.
public class CsvOpenOptions : OpenOptionsBase
Public Class CsvOpenOptions
Inherits OpenOptionsBase
Name | Description |
---|---|
CsvOpenOptions() | Constructor. |
Name | Description |
---|---|
CellSeparator | Gets or sets a char value as cell separator. |
ColumnSeparator | Gets or sets a string value as column separator. |
ConvertDateTimeData | Gets or sets a value that indicates whether the string in text file is converted to date data,Default is true. |
ConvertNumericData | Gets or sets a value that indicates whether the string in text file is converted to numeric data,Default is true. |
Encoding | Gets or sets the default encoding, default is utf-8. |
HasFormula | Indicates whether the text is formula if it starts with "=", default is true. |
ParseStyle | Indicates whether to apply style for parsed values when converting string value to number or datetime,Default is true. |
Parser | Gets or sets custom parser. |
RowSeparator | Gets or sets a string value as row separator. |
SeparatorString | Gets or sets a string value as column separator. |