AvailableExportFormatsFlags
The AEF_ prefixed flags are used to denote the possible ABBYY FineReader Engine export formats whose availability depends on the license. The ILicense::AvailableExportFormats property returns a bitwise OR combination of zero or more of these flags values, where each set bit indicates that the corresponding export format is available in the license.
module AvailableExportFormatsFlags { const int AEF_RTF = 0x00000001; const int AEF_HTML = 0x00000002; const int AEF_XLS = 0x00000004; const int AEF_PDF = 0x00000008; const int AEF_Text = 0x00000020; const int AEF_PDFImageOnly = 0x00000040; const int AEF_XML = 0x00000080; const int AEF_PPT = 0x00000100; const int AEF_PDFA = 0x00000200; const int AEF_PDFMRC = 0x00000800; const int AEF_ALTO = 0x00001000; const int AEF_EPUB = 0x00002000; const int AEF_FB2 = 0x00004000; const int AEF_ODT = 0x00008000; const int AEF_XPS = 0x00010000; };
Elements
Flag name | Description |
---|---|
AEF_ALTO | ALTO export format. |
AEF_EPUB | EPUB export format. |
AEF_FB2 | FB2 export format. |
AEF_HTML | HTML export format. |
AEF_ODT | ODT export format. |
AEF_PDF | PDF export format. |
AEF_PDFA | PDF/A export format. |
AEF_PDFImageOnly | PDF Image Only export format. |
AEF_PDFMRC | PDF MRC export format. |
AEF_PPT | PPTX export format. |
AEF_RTF | RTF, DOCX export format. |
AEF_Text | Text export format. |
AEF_XLS | XLS, XLSX export format. |
AEF_XML | ABBYY XML export format. |
AEF_XPS | XPS export format. |
Used in
03.07.2024 8:50:25