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

# BarcodeSupplementTypeEnum

> ABBYY FineReader Engine API の BarcodeSupplementTypeEnum — EAN 8/13、UPC-A、UPC-E のバーコードで認識可能な補助バーコード（2 桁または 5 桁）の種類。

BarcodeSupplementTypeEnum の列挙定数は、ABBYY FineReader Engine で認識可能な補助バーコードの種類を表します。[EAN 8, 13](/ja/fine-reader/engine/specifications/barcode-types#ean813)、[UPC-A](/ja/fine-reader/engine/specifications/barcode-types#upc-a)、および [UPC-E](/ja/fine-reader/engine/specifications/barcode-types#upc-e) 型のバーコードには、2 桁または 5 桁の補助バーコードが付加される場合があります。

```
typedef enum {
 BS_Void       = 0x00000001,
 BS_2Digits    = 0x00000002,
 BS_5Digits    = 0x00000004,
 BS_Autodetect = BS_Void | BS_2Digits | BS_5Digits
} BarcodeSupplementTypeEnum;
```

<div id="elements">
  ## 要素
</div>

| Name           | Description                                             |
| -------------- | ------------------------------------------------------- |
| BS\_2Digits    | 2 桁の補助バーコード。                                            |
| BS\_5Digits    | 5 桁の補助バーコード。                                            |
| BS\_Autodetect | 認識時に、ABBYY FineReader Engine で補助バーコードの種類を自動検出するよう指定します。 |
| BS\_Void       | 補助バーコードなし。                                              |

<div id="used-in">
  ## 使用箇所
</div>

[バーコードの種類](/ja/fine-reader/engine/specifications/barcode-types)

[IBarcodeBlock::SupplementType](/ja/fine-reader/engine/api-reference/layout-related-objects/barcodeblock#supplementtype)

[IBarcodeParams::SupplementType](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/barcodeparams#supplementtype)
