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

# AvailableTextTypesFlags

The ATT\_ prefixed flags are used to denote [the possible ABBYY FineReader Engine text types](/fine-reader/engine/licensing/modules) whose availability depends on the license. The [ILicense::AvailableTextTypes](/fine-reader/engine/api-reference/license-related-objects/license#availabletexttypes) property returns a bitwise OR combination of zero or more of these flags values, where each set bit indicates that the corresponding text type is available in the license.

```
module AvailableTextTypesFlags
{
  const int ATT_Normal      = 0x00000001;
  const int ATT_Typewriter  = 0x00000002;
  const int ATT_Matrix      = 0x00000004;
  const int ATT_Index       = 0x00000008;
  const int ATT_OCR_A       = 0x00000010;
  const int ATT_OCR_B       = 0x00000020;
  const int ATT_MICR_E13B   = 0x00000040;
  const int ATT_Gothic      = 0x00000080;
  const int ATT_MICR_CMC7   = 0x00000100;
  const int ATT_Advanced    = 0x00000200;
  const int ATT_Receipt     = 0x00000400;
};
```

## Elements

| Flag name           | Description                                                                                                                                                                                                                                                                                                                                                     |
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| ATT\\\_Advanced     | Normal text type with low resolution ([TextTypeEnum::TT\\\_Normal](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_normal) and [IRecognizerParams::LowResolutionMode](/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/recognizerparams#lowresolutionmode) property set to TRUE). |
| ATT\\\_Gothic       | Gothic text type ([TextTypeEnum::TT\\\_Gothic](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_gothic)). Available if and only if the ABBYY FineReader XIX module is available.                                                                                                                                                                  |
| ATT\\\_Index        | Index text type ([TextTypeEnum::TT\\\_Index](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_index)).                                                                                                                                                                                                                                            |
| ATT\\\_Matrix       | Matrix text type ([TextTypeEnum::TT\\\_Matrix](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_matrix)).                                                                                                                                                                                                                                         |
| ATT\\\_MICR\\\_E13B | [E13B](/fine-reader/engine/specifications/predefined-languages#e13b) language and MICR text type ([TextTypeEnum::TT\\\_MICR\\\_E13B](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_micr_e13b)).                                                                                                                                                |
| ATT\\\_MICR\\\_CMC7 | [CMC7](/fine-reader/engine/specifications/predefined-languages#cmc7) language and MICR text type ([TextTypeEnum::TT\\\_MICR\\\_CMC7](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_micr_cmc7)).                                                                                                                                                |
| ATT\\\_Normal       | Normal text type ([TextTypeEnum::TT\\\_Normal](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_normal)).                                                                                                                                                                                                                                         |
| ATT\\\_OCR\\\_A     | [OCR-A](/fine-reader/engine/specifications/predefined-languages#ocra) language and text type ([TextTypeEnum::TT\\\_OCR\\\_A](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_ocr_a)).                                                                                                                                                            |
| ATT\\\_OCR\\\_B     | [OCR-B](/fine-reader/engine/specifications/predefined-languages#ocrb) language and text type ([TextTypeEnum::TT\\\_OCR\\\_B](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_ocr_b)).                                                                                                                                                            |
| ATT\\\_Receipt      | Receipt text type ([TextTypeEnum::TT\\\_Receipt](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_receipt)).                                                                                                                                                                                                                                      |
| ATT\\\_Typewriter   | Typewriter text type ([TextTypeEnum::TT\\\_Typewriter](/fine-reader/engine/api-reference/enumerations/texttypeenum#tt_typewriter)).                                                                                                                                                                                                                             |

## Used in

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

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