[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.CsvOpenOptions.RowSeparator

RowSeparator Property

RowSeparator

Gets or sets the row separator used when opening a CSV file.

The row separator is the string delimiter that separates records in the source CSV data.

Declaration
public string RowSeparator { get; set; }
Public Property RowSeparator As String
Examples
CsvOpenOptions options = new CsvOpenOptions();
options.RowSeparator = "\r\n";
string rowSeparator = options.RowSeparator;
workbook.Open("path/to/source.csv", options);