[]
Gets or sets how values are quoted in the exported text file.
This option controls the quoting behavior used when saving CSV content. If QuoteColumns is set, this setting is ignored.
public ValueQuoteType ValueQuoteType { get; set; }
Public Property ValueQuoteType As ValueQuoteType
CsvSaveOptions options = new CsvSaveOptions();
options.ValueQuoteType = ValueQuoteType.Always;
ValueQuoteType quoteType = options.ValueQuoteType;
workbook.Save("path/to/output.csv", options);