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