[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CsvOpenOptions.HasFormula

HasFormula Property

HasFormula

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.

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