ImportCSV

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

Importer un fichier CSV dans les cellules.

public void ImportCSV(string fileName, string splitter, bool convertNumericData, int firstRow, 
    int firstColumn)
ParamètreTaperLa description
fileNameStringLe nom du fichier CSV.
splitterStringLe diviseur
convertNumericDataBooleanIndique si la chaîne du fichier texte est convertie en données numériques.
firstRowInt32Le numéro de ligne de la première cellule à importer.
firstColumnInt32Le numéro de colonne de la première cellule à importer.

Voir également


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

Importer un fichier CSV dans les cellules.

public void ImportCSV(Stream stream, string splitter, bool convertNumericData, int firstRow, 
    int firstColumn)
ParamètreTaperLa description
streamStreamLe flux de fichiers CSV.
splitterStringLe diviseur
convertNumericDataBooleanIndique si la chaîne du fichier texte est convertie en données numériques.
firstRowInt32Le numéro de ligne de la première cellule à importer.
firstColumnInt32Le numéro de colonne de la première cellule à importer.

Voir également


ImportCSV(string, TxtLoadOptions, int, int)

Importer un fichier CSV dans les cellules.

public void ImportCSV(string fileName, TxtLoadOptions options, int firstRow, int firstColumn)
ParamètreTaperLa description
fileNameStringLe nom du fichier CSV.
optionsTxtLoadOptionsLes options de chargement pour lire le fichier texte
firstRowInt32Le numéro de ligne de la première cellule à importer.
firstColumnInt32Le numéro de colonne de la première cellule à importer.

Voir également


ImportCSV(Stream, TxtLoadOptions, int, int)

Importer un fichier CSV dans les cellules.

public void ImportCSV(Stream stream, TxtLoadOptions options, int firstRow, int firstColumn)
ParamètreTaperLa description
streamStreamLe flux de fichiers CSV.
optionsTxtLoadOptionsLes options de chargement pour lire le fichier texte
firstRowInt32Le numéro de ligne de la première cellule à importer.
firstColumnInt32Le numéro de colonne de la première cellule à importer.

Voir également