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

# White Gap

> FlexiLayout language における White Gap 要素の検索を制御します。ギャップの向き、上限しきい値と下限しきい値、最小幅、およびオブジェクト型フィルターを設定します。

FlexiLayout language では、**White Gap** 要素で次のパラメーターを使用できます。

<div id="white-gap-parameters">
  ## White Gap のパラメーター
</div>

| パラメーター                                                                                    | 説明                                                                                                                                                                                                                                  |
| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `Void Mode( Direction )`                                                                  | White Gap の向きです。**要素のプロパティ**ダイアログの **White Gap** タブ、および[White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)を参照してください。                                                                                                  |
| `Void RelativeGapLevel( Real )`                                                           | **White Gap** > **相対上限しきい値** および[White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)を参照してください。                                                                                                                         |
| `Void MaxGapLevel( Distance )`                                                            | **White Gap** > **上限しきい値** および[White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)を参照してください。                                                                                                                           |
| `Void MinGapLevel( Distance )`                                                            | **White Gap** > **下限しきい値** および[White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)を参照してください。                                                                                                                           |
| `Void MinGapWidth( Distance )`                                                            | **White Gap** > **最小幅/高さ** および[White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)を参照してください。                                                                                                                           |
| `Void Type( `[`ImageObjectType`](/ja/flexi-capture/fls/language/predefined-constants)` )` | White Gap を検索する対象となるオブジェクトの型を指定します。                                                                                                                                                                                                 |
| `Void UseRawText( Logic )`                                                                | テキスト検索で、[事前認識](/ja/flexi-capture/fls/batch/prerecognition)中に型 **Raw Text** が割り当てられた、認識されていないテキストに似たオブジェクトを使用できるようにします。この機能を有効にするには、パラメーター `true` を指定してメソッドを呼び出します。既定では、テキスト検索では認識されたテキストのみが使用されます (つまり、パラメーターは `false` に設定されています) 。 |

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

<div id="mode">
  ### `Mode`
</div>

次のコードは、FlexiLayout Studio に垂直方向のギャップを検索させます。

```text theme={null}
Mode: Vertical;
```

<div id="maxgaplevel">
  ### `MaxGapLevel`
</div>

次のコードは、最大ギャップレベルが 150 ドットを超えないように FlexiLayout Studio に指定します。

```text theme={null}
MaxGapLevel (150dt);
```

<div id="mingapwidth">
  ### `MinGapWidth`
</div>

次のコードは、水平ギャップの最小の高さが 50 ドットであることを FlexiLayout Studio に示します。

```text theme={null}
Mode: Horizontal;
MinGapWidth (50dt);
```

<div id="type">
  ### `Type`
</div>

次のコードでは、FlexiLayout Studio がテキストオブジェクトの間にあるWhite Gap のみを探すよう指定しています。

```text theme={null}
Type: AnyText+InvertedTextObject;
```

<div id="related-topics">
  ## 関連トピック
</div>

* [White Gap 要素の仮説](/ja/flexi-capture/fls/hypotheses/hyp-white-gap)
