[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CsvSaveOptions.RowSeparator

RowSeparator Property

RowSeparator

Gets or sets the row separator.

This property controls the string used to separate rows when saving a workbook to a CSV file.

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