[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CsvSaveOptions.ColumnSeparator

ColumnSeparator Property

ColumnSeparator

Gets or sets the column separator used when saving CSV data.

The column separator determines how values are separated between columns in the exported CSV content.

Declaration
public string ColumnSeparator { get; set; }
Public Property ColumnSeparator As String
Examples
CsvSaveOptions options = new CsvSaveOptions();
options.ColumnSeparator = ";";
string separator = options.ColumnSeparator;
workbook.Save("path/to/output.csv", options);