> ## 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 オブジェクトの CharConfidence プロパティ

> ABBYY FineReader Engine API の PlainText オブジェクトにおける CharConfidence プロパティ。指定した文字の認識信頼度（メインの認識候補）を返します。一般的な品質指標ではなく、同じ文字の候補を比較することを目的としています。

このプロパティは、指定した文字の認識信頼度を返します。これは、メインの (選択されている) 認識バリアントの信頼度です。

信頼度は、認識バリアントの正確性の目安を示します。ただし、これは認識品質全般を表す指標として解釈すべきではありません。信頼度を確実に利用できるのは、同じ文字に対する認識バリアント同士を比較する場合に限られます。認識処理を行わずにソース PDF ファイルから抽出された文字の信頼度は、55 に設定されます。

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

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

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

### C\#

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

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

```vb theme={null}
Property CharConfidence(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)

[プロパティの操作](/ja/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
