> ## 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

> AvailableExportFormatsFlags in der ABBYY FineReader Engine API — Bitweise Flags, die kennzeichnen, welche Exportformate von FineReader Engine unter der aktuellen Lizenz verfügbar sind.

Die mit AEF\_ beginnenden Flags werden verwendet, um [die möglichen Exportformate von ABBYY FineReader Engine](/de/fine-reader/engine/licensing/modules) zu kennzeichnen, deren Verfügbarkeit von der Lizenz abhängt. Die Eigenschaft [ILicense::AvailableExportFormats](/de/fine-reader/engine/api-reference/license-related-objects/license#availableexportformats) gibt eine bitweise ODER-Kombination aus null oder mehr dieser Flag-Werte zurück, wobei jedes gesetzte Bit angibt, dass das entsprechende Exportformat in der Lizenz verfügbar ist.

```
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;
};
```

<div id="elements">
  ## Elemente
</div>

| Flag-Name         | Beschreibung                 |
| ----------------- | ---------------------------- |
| AEF\_ALTO         | ALTO-Exportformat.           |
| AEF\_EPUB         | EPUB-Exportformat.           |
| AEF\_FB2          | FB2-Exportformat.            |
| AEF\_HTML         | HTML-Exportformat.           |
| AEF\_ODT          | ODT-Exportformat.            |
| AEF\_PDF          | PDF-Exportformat.            |
| AEF\_PDFA         | PDF/A-Exportformat.          |
| AEF\_PDFImageOnly | PDF-Image-Only-Exportformat. |
| AEF\_PDFMRC       | PDF-MRC-Exportformat.        |
| AEF\_PPT          | PPTX-Exportformat.           |
| AEF\_RTF          | RTF-/DOCX-Exportformat.      |
| AEF\_Text         | Text-Exportformat.           |
| AEF\_XLS          | XLS-/XLSX-Exportformat.      |
| AEF\_XML          | ABBYY XML-Exportformat.      |
| AEF\_XPS          | XPS-Exportformat.            |

<div id="used-in">
  ## Verwendet in
</div>

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

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