[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CsvOpenOptions.ParseStyle

ParseStyle Property

ParseStyle

Gets or sets whether styles are applied to parsed values when string values are converted to numbers or date/time values.

The default value is true.

Declaration
public bool ParseStyle { get; set; }
Public Property ParseStyle As Boolean
Examples
CsvOpenOptions options = new CsvOpenOptions();
options.ParseStyle = false;
bool parseStyle = options.ParseStyle;
workbook.Open("path/to/source.csv", options);