Aspose::Cells::LowCode::TextConverter class

TextConverter class

Converter for conversion between text based formats(csv, tsv, dif…) and other spreadsheet file formats.

class TextConverter

Methods

MethodDescription
IsNull() constChecks whether the implementation object is nullptr.
explicit operator bool() constoperator bool()
operator=(const TextConverter& src)operator=
static Process(const U16String& templateFile, const U16String& resultFile)Converts given template file between text based files and other formats.
static Process(const char16_t* templateFile, const char16_t* resultFile)Converts given template file between text based files and other formats.
static Process(const LowCodeLoadOptions& loadOptions, const LowCodeSaveOptions& saveOptions)Converts file format between text based formats and other spreadsheet file formats.
TextConverter(TextConverter_Impl* impl)Constructs from an implementation object.
TextConverter(const TextConverter& src)Copy constructor.
~TextConverter()Destructor.

Fields

FieldDescription
_implThe implementation object.

Examples

TextConverter::Process(u"template.csv", u"res.xlsx");

See Also