[]
Gets or sets a value indicating whether text that starts with "=" is treated as a formula when a CSV file is opened.
The default value is true.
public bool HasFormula { get; set; }
Public Property HasFormula As Boolean
CsvOpenOptions options = new CsvOpenOptions();
options.HasFormula = false;
bool hasFormula = options.HasFormula;
workbook.Open("path/to/source.csv", options);