Cells.ImportCSV

ImportCSV(string, string, bool, int, int)

Import a CSV file to the cells.

public void ImportCSV(string fileName, string splitter, bool convertNumericData, int firstRow, 
    int firstColumn)
ParameterTypeDescription
fileNameStringThe CSV file name.
splitterStringThe splitter
convertNumericDataBooleanWhether the string in text file is converted to numeric data.
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.

See Also


ImportCSV(Stream, string, bool, int, int)

Import a CSV file to the cells.

public void ImportCSV(Stream stream, string splitter, bool convertNumericData, int firstRow, 
    int firstColumn)
ParameterTypeDescription
streamStreamThe CSV file stream.
splitterStringThe splitter
convertNumericDataBooleanWhether the string in text file is converted to numeric data.
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.

See Also


ImportCSV(string, TxtLoadOptions, int, int)

Import a CSV file to the cells.

public void ImportCSV(string fileName, TxtLoadOptions options, int firstRow, int firstColumn)
ParameterTypeDescription
fileNameStringThe CSV file name.
optionsTxtLoadOptionsThe load options for reading text file
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.

See Also


ImportCSV(Stream, TxtLoadOptions, int, int)

Import a CSV file to the cells.

public void ImportCSV(Stream stream, TxtLoadOptions options, int firstRow, int firstColumn)
ParameterTypeDescription
streamStreamThe CSV file stream.
optionsTxtLoadOptionsThe load options for reading text file
firstRowInt32The row number of the first cell to import in.
firstColumnInt32The column number of the first cell to import in.

See Also