Class TextConverter

Info

Konvertor pro převod mezi textovými formáty (csv, markdown, dif…) a dalšími formáty tabulkových souborů.

public class TextConverter  

Dědičnost

object
TextConverter

Děděné členy

Příklady

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

Konstrukory

TextConverter()

public TextConverter()  

Metody

Process(LoadOptions, TextSaveOptions)

Konvertuje formát souboru mezi textovými formáty a dalšími formáty tabulkových souborů

public void Process(LoadOptions loadOptions, TextSaveOptions saveOptions)  

Parametry

Namespace: Sheetize
Assembly: Sheetize.dll

 Čeština