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.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
[C#]
LoadOptions loadOptions = new LoadOptions();
loadOptions.InputFile = "Template.csv";
TextSaveOptions saveOptions = new TextSaveOptions();
saveOptions.OutputFile = "res.xlsx";
TextConverter.Process(loadOptions, saveOptions);
Methods
Process(LoadOptions, SaveOptions)
Converts file format between text based formats and other spreadsheet file formats
public static void Process(LoadOptions loadOptions, SaveOptions saveOptions)
Parameters
loadOptions
LoadOptions: Options for input and loading:saveOptions
SaveOptions: Options for output and saving
Namespace: Sheetize Assembly: Sheetize.dll