Class TextConverter
Info
Converter for conversion between text based formats(csv, markdown, dif…) and other spreadsheet file formats.
public class TextConverter
Inheritance
Inherited Members
- object.ToString(),
- object.Equals(object),
- object.Equals(object, object),
- object.ReferenceEquals(object, object),
- object.GetHashCode(),
- object.GetType(),
- object.MemberwiseClone()
Examples
1TextConverter converter = new TextConverter();
2LoadOptions loadOptions = new LoadOptions();
3loadOptions.InputFile = "Template.csv";
4TextSaveOptions saveOptions = new TextSaveOptions();
5saveOptions.OutputFile = "res.xlsx";
6converter.Process(loadOptions, saveOptions);
Constructors
TextConverter()
public TextConverter()
Methods
Process(LoadOptions, TextSaveOptions)
Converts file format between text based formats and other spreadsheet file formats
public void Process(LoadOptions loadOptions, TextSaveOptions saveOptions)
Parameters
loadOptions
LoadOptions: Options for input and loading:saveOptions
TextSaveOptions: Options for output and saving
Namespace: Sheetize Assembly: Sheetize.dll