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

# Field

> Splitter スクリプト アクティビティで、Field の値、パラメーター、Region、および子インスタンスへの読み取り専用アクセスを提供する Field class。

field、その値、およびパラメーターへの読み取り専用アクセスを提供します。

<div id="properties">
  ## プロパティ
</div>

| Name            | Type              | Access Level | Description                                                                                       |
| :-------------- | :---------------- | :----------- | :------------------------------------------------------------------------------------------------ |
| `Children`      | `Field[]`         | Read-only    | 子fieldの配列。このプロパティは、繰り返しfieldのコンテナーに対してのみ有効です。                                                     |
| `DataType`      | `DataType`        | Read-only    | field内のデータ型。                                                                                      |
| `FieldType`     | `FieldType`       | Read-only    | fieldの種類。                                                                                         |
| `FullName`      | `string`          | Read-only    | Documentのルートから当該名前までのフルパス。区切りにスラッシュ（/）を使用します（例: `Vendor/Address/Street`）。                         |
| `HasRegion`     | `bool`            | Read-only    | ドキュメント上でfieldが見つかった（対応する領域が存在する）場合は`true`を返します。`false`は、そのドキュメント画像にこのfieldに対応する領域が含まれていないことを示します。 |
| `Id`            | `string`          | Read-only    | ドキュメント定義内のfield識別子。                                                                               |
| `ImageRegions`  | `ImageRegionList` | Read-only    | 画像上のfield領域の配列。                                                                                   |
| `InstanceIndex` | `int`             | Read-only    | 繰り返しfieldの現在のインスタンスのインデックス。`IsRepeatable` が `true` の場合にのみ有効です。その他のすべての場合は -1 に設定されます。             |
| `Instances`     | `Field[]`         | Read-only    | このfieldのすべてのインスタンスの配列。`IsRepeatable` が `true` の場合にのみ有効です。                                         |
| `IsConfirmed`   | `bool`            | Read-only    | オペレーターまたは検証ルールによりfieldが検証済みであれば`true`を返します。                                                       |
| `IsRepeatable`  | `bool`            | Read-only    | fieldが繰り返し可能であれば`true`を返します。                                                                      |
| `IsSuspicious`  | `bool`            | Read-only    | field値のいずれかの文字が信頼性低く認識された場合は`true`を返します。このようなfieldの値は、オペレーターによる手動確認か、ルールによるチェックが必要です。             |
| `IsValid`       | `bool`            | Read-only    | fieldの認識テキスト（`Text` プロパティ）が、必要な型の値（`Value` プロパティ）に正常に変換された場合は`true`を返します。                         |
| `IsVisible`     | `bool`            | Read-only    | fieldがドキュメント上で可視であれば`true`を返します。                                                                  |
| `Name`          | `string`          | Read-only    | グループ内で一意のfield名。                                                                                  |
| `Parent`        | `Field`           | Read-only    | 親field。                                                                                           |
| `ReadOnly`      | `bool`            | Read-only    | fieldが読み取り専用で、手動確認のオペレーターによって編集できない場合は`true`を返します。                                                |
| `Symbols`       | `Symbol[]`        | Read-only    | テキスト形式でfieldの元の値を構成する文字の配列。                                                                       |
| `Text`          | `string`          | Read-only    | テキスト形式でのfieldの元の値（ドキュメント認識時に生成）。                                                                  |
| `Value`         | `object`          | Read-only    | 指定された形式でのfieldの値（認識テキストの変換時に生成）。                                                                  |

<div id="methods">
  ## メソッド
</div>

| 名前                                          | 説明                     |
| :------------------------------------------ | :--------------------- |
| `Field GetChild(string fieldDefinitionId);` | 指定した識別子を持つ子Fieldを返します。 |
