GemBox.Spreadsheet

ExcelFile.LoadCsv Method

Loads the existing CSV file or stream.

Overload List

Loads the existing stream with specified CSV format.

public void LoadCsv(Stream,CsvType);

Loads the existing stream, using specified character as a delimiter.

public void LoadCsv(Stream,char);

Loads all data using specified StreamReader and CSV Type.

public void LoadCsv(StreamReader,CsvType);

Loads all data using specified StreamReader and character delimiter.

public void LoadCsv(StreamReader,char);

Loads the existing file with specified CSV format.

public void LoadCsv(string,CsvType);

Loads the existing file, using specified character as a delimiter.

public void LoadCsv(string,char);

See Also

ExcelFile Class | GemBox.Spreadsheet Namespace