> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AvailableExportFormatsFlags

The AEF\_ prefixed flags are used to denote [the possible ABBYY FineReader Engine export formats](/fine-reader/engine/licensing/modules) whose availability depends on the license. The [ILicense::AvailableExportFormats](/fine-reader/engine/api-reference/license-related-objects/license#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

[License](/fine-reader/engine/api-reference/license-related-objects/license)

[ABBYY FineReader Engine 12 Modules](/fine-reader/engine/licensing/modules)
