Skip to main content
FileExportFormatEnum enumeration constants define different file formats in which ABBYY FineReader Engine can save the recognized text.
typedef enum {
 FEF_RTF,
 FEF_HTMLVersion10Defaults,
 FEF_HTMLUnicodeDefaults,
 FEF_XLS,
 FEF_PDF,
 FEF_TextVersion10Defaults,
 FEF_TextUnicodeDefaults,
 FEF_XML,
 FEF_DOCX,
 FEF_XLSX,
 FEF_PPTX,
 FEF_ALTO,
 FEF_EPUB,
 FEF_FB2,
 FEF_ODT,
 FEF_XPS,
 FEF_JSON
} FileExportFormatEnum;

Elements

NameDescription
FEF\_ALTOALTO format. The parameters of a file in this format are tuned through the AltoExportParams object.
FEF\_DOCXDOCX (Microsoft Word 2007 and later) format. The parameters of the file in this format are tuned through the RTFExportParams object.
FEF\_EPUBEPUB format. The parameters of a file in this format are tuned through the EBookExportParams object.
FEF\_FB2FB2 format. The parameters of a file in this format are tuned through the EBookExportParams object.
FEF\_HTMLVersion10DefaultsHTML format. The parameters of a file in this format are tuned through the HTMLExportParams object. The default encoding is selected in the same way as in the 10th version. This constant will be removed in the next version.
FEF\_HTMLUnicodeDefaultsHTML Unicode format. The parameters of a file in this format are tuned through the HTMLExportParams object. The default encoding is UTF-8.
FEF\_JSONJSON format. The parameters of a file in this format are tuned through the JsonExportParams object.
FEF\_ODTODT (Open Office document) format. The parameters of a file in this format are tuned through the RTFExportParams object.
FEF\_PDFPDF or PDF/A format. The parameters of a file in this format are tuned through the PDFExportParams object. Whether to export to PDF or PDF/A is defined by the PDFAComplianceMode property of this object.
FEF\_PPTXPPTX (Microsoft PowerPoint 2007 and later) format. The parameters of a file in this format are tuned through the PPTExportParams object.
FEF\_RTFMicrosoft RTF format. The parameters of the file in this format are tuned through the RTFExportParams object.
FEF\_TextVersion10DefaultsTXT or CSV format. The parameters of a file in this format are tuned through the TextExportParams object. Whether to export to TXT or CSV is defined by the ExportFormat property of this object. The default encoding is selected in the same way as in the 10th version. This constant will be removed in the next version.
FEF\_TextUnicodeDefaultsTXT Unicode or CSV Unicode format. The parameters of a file in this format are tuned through the TextExportParams object. Whether to export to TXT or CSV is defined by the ExportFormat property of this object. The default encoding is UTF-8.
FEF\_XLSXLS (Microsoft Excel) format. The parameters of a file in this format are tuned through the XLExportParams object.
FEF\_XLSXXLSX (Microsoft Excel 2007 and later) format. The parameters of a file in this format are tuned through the XLExportParams object.
FEF\_XMLXML format. The parameters of a file in this format are tuned through the XMLExportParams object.
FEF\_XPSXPS format. The parameters of a file in this format are tuned through the XPSExportParams object.

Used in

IFRDocument::Export IFRDocument::ExportPages IFRDocument::ExportToMemory IFRPage::Export IEngine::RecognizeImageFile IDocumentViewerEvents::OnExportPages