> ## 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 要素のプロパティを Code Editor の Search Conditions セクションで変更する方法について説明します。

必要に応じて、Code Editor の **Search Conditions** セクションで要素のプロパティを変更できます。以下は、**Search Conditions** セクションで編集できる要素の一覧です。

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

以下では、要素 Element1 と Element2 が検出されているかどうかを確認します。少なくとも一方の要素が検出されていない場合は、プログラムに縦方向のセパレーターを探すよう指示します。そうでなければ、横方向のセパレーターを探します。

```
if (Element1.IsNull == False) or (Element2.IsNull == False) then
Mode: Vertical;
else
Mode: Horizontal;
```

要素のプロパティについては、以降のセクションで詳しく説明します。
