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

# PlainText オブジェクトの ErrorProbability プロパティ

> ABBYY FineReader Engine API の PlainText オブジェクトの ErrorProbability プロパティ — 指定した文字が誤って認識された推定確率 (0..100) を返します。認識処理されていない記号 (たとえば、ソース PDF から直接抽出されたもの) については計算されません。

このプロパティは、指定した文字が誤って認識された推定確率 (0～100 の範囲) を返します。

認識処理を経ずに取得された記号については、エラー確率は計算されません。たとえば、元の PDF ファイルから直接取得された記号がこれに該当します。

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

```cpp theme={null}
HRESULT get_ErrorProbability(
   int  Index,
   int* Result
);
```

### C\#

```csharp theme={null}
int get_ErrorProbability( int Index );
```

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Property ErrorProbability(Index As Integer) As Integer
```

<div id="parameters">
  ## パラメーター
</div>

Index

\[in] このパラメーターは、認識されたテキスト内で指定した記号のインデックスを指定します。

Result

\[out, retval] このプロパティの値を受け取る `int` 型変数へのポインターです。

<div id="return-values">
  ## 戻り値
</div>

この関数には固有の戻り値はありません。[ABBYY FineReader Engine 関数の標準的な戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

<div id="see-also">
  ## 関連項目
</div>

[PlainText](/ja/fine-reader/engine/api-reference/text-related-objects/plaintext)

[CharConfidence、ErrorProbability、IsSuspicious の違い](/ja/fine-reader/engine/frequently-asked-questions#suspicious)

[Properties の使用](/ja/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
