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

# BarcodeOrientationEnum

> ABBYY FineReader Engine API の BarcodeOrientationEnum。BarcodeParams オブジェクトで使用される、検出可能なバーコードの向きです。

BarcodeOrientationEnum の列挙定数は、ABBYY FineReader Engine で検出可能なバーコードの向きの種類を示すために使用されます。これは、[BarcodeParams](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/barcodeparams) オブジェクトで使用されます。

```
typedef enum {
 BO_Unknown       = 0x00000000,
 BO_Left_To_Right = 0x00000001,
 BO_Down_To_Top   = 0x00000002,
 BO_Right_To_Left = 0x00000004,
 BO_Top_To_Down   = 0x00000008,
 BO_Autodetect    = BO_Left_To_Right | BO_Down_To_Top | BO_Right_To_Left | BO_Top_To_Down
} BarcodeOrientationEnum;
```

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

| Name                | Description                                                                          |
| ------------------- | ------------------------------------------------------------------------------------ |
| BO\_Autodetect      | バーコードの向きを自動的に検出します。                                                                  |
| BO\_Down\_To\_Top   | バーコードは下から上向きです。                                                                      |
| BO\_Left\_To\_Right | バーコードは左から右向きです。                                                                      |
| BO\_Right\_To\_Left | バーコードは右から左向きです。                                                                      |
| BO\_Top\_To\_Down   | バーコードは上から下向きです。                                                                      |
| BO\_Unknown         | バーコードの向きが不明であることを示します。ABBYY FineReader Engineがバーコードの向きの検出に失敗した場合、戻り値として使用されることがあります。 |

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

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