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
Děděné členy
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
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
loadOptions
LoadOptions: Možnosti pro vstup a načítání:saveOptions
TextSaveOptions: Možnosti pro výstup a ukládání
Namespace: Sheetize
Assembly: Sheetize.dll