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

# 通貨

> FlexiLayout language の 通貨 要素を使用して、通貨名、名称の位置、値の範囲、小数区切り記号に基づいて金額を検索します。

**通貨** 要素は、FlexiLayout language で次のパラメーターをサポートしています。

<div id="currency-parameters">
  ## 通貨パラメータ
</div>

| Parameter                                        | Description                                                                                                                                                   |
| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Void AllowFractionalPartOmission( Logic )`      | 数値に小数部を必須とするかどうかを指定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **小数部の省略を許可** プロパティを参照してください。                                                  |
| `Void AllowSeparatorOmission( Logic )`           | 数値で小数部の区切り記号を必須とするかどうかを指定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **区切り記号の省略を許可** プロパティを参照してください。                                          |
| `Void CurrencyNames( String )`                   | 使用可能な通貨名を指定します。候補は縦棒 (`\|`) で区切る必要があります。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **通貨名** プロパティを参照してください。                                       |
| `Void CurrencyOmissionQuality( Real )`           | 通貨名がない場合のペナルティを設定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **通貨名欠落時のペナルティ** プロパティを参照してください。                                                 |
| `Void CurrencyPosition( CurrencyPositionTypes )` | 通貨名の位置を、数値の左側または右側に設定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **通貨名の位置** プロパティを参照してください。                                                   |
| `Void FindOnlyIntegers( Logic )`                 | 整数のみを検索します。`Separators` 関数で設定した記号 (または対応するダイアログ内の記号) は無視されます。`AllowSeparatorOmission` は自動的に `true` に設定され、`AllowFractionalPartOmission` は自動的に `false` に設定されます。 |
| `Void MaximalValue( Real )`                      | 最大数値を設定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **最大値** プロパティを参照してください。                                                                    |
| `Void MaxXOutsidePart( Real )`                   | 文字のうち、検索領域の外にはみ出してよい水平方向の割合を指定します。この割合は `0` から `1` までの数値で指定します。検索領域の外にはみ出している割合が指定値以下の文字は、Hypothesis に含まれます。                                                  |
| `Void MaxYOutsidePart( Real )`                   | 文字のうち、検索領域の外にはみ出してよい垂直方向の割合を指定します。この割合は `0` から `1` までの数値で指定します。検索領域の外にはみ出している割合が指定値以下の文字は、Hypothesis に含まれます。                                                  |
| `Void MaxRelativeGapInLine( Real )`              | 隣接する文字間の最大距離を、行の高さに対する割合 (%) で表します。                                                                                                                           |
| `Void MinimalValue( Real )`                      | 最小数値を設定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **最小値** プロパティを参照してください。                                                                    |
| `Void Separators( String )`                      | 数値の整数部と小数部の区切りに使用できる記号を設定します。[**通貨**ダイアログ](/ja/flexi-capture/fls/template/currency)の **使用可能な小数部区切り記号** プロパティを参照してください。                                        |
| `Void AllowedTextRotations( TextRotations )`     | 要素の検索を許可する認識されたテキストの向きのセットを指定します。                                                                                                                             |

<div id="examples">
  ## 例
</div>

`CurrencyNames` の例:

```text theme={null}
Currency: "USD|$|EUR|EURO";
```

`CurrencyPosition` の例:

```text theme={null}
CurrencyPosition: CurrencyPos_Left;
```

`Separators` の例:

```text theme={null}
Separators: ",.";
```
