Class TextConverter

Information

Convertisseur pour la conversion entre des formats basés sur du texte (csv, markdown, dif…) et d’autres formats de fichiers de tableur.

public class TextConverter

Héritage

objectTextConverter

Membres hérités

Exemples

1TextConverter converter = new TextConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.csv";
4TextSaveOptions saveOptions = new TextSaveOptions();
5saveOptions.OutputFile = "res.xlsx";
6converter.Process(loadOptions, saveOptions);

Constructeurs

TextConverter()

public TextConverter()

Méthodes

Process(LoadOptions, TextSaveOptions)

Convertit le format de fichier entre des formats basés sur du texte et d’autres formats de fichiers de tableur

public void Process(LoadOptions loadOptions, TextSaveOptions saveOptions)

Paramètres

  • loadOptions LoadOptions: Options pour l’entrée et le chargement:
  • saveOptions TextSaveOptions: Options pour la sortie et l’enregistrement

Namespace: Sheetize Assembly: Sheetize.dll

 Français