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

# ExternalDictionaryCallback オブジェクトの ExternalDictionaryResult メソッド

> ABBYY FineReader Engine API の ExternalDictionaryCallback オブジェクトの ExternalDictionaryResult メソッド — 見つかった辞書語、その信頼度、および対応するあいまい文字列のインデックスを、IExternalDictionary::CheckWords から認識エンジンに返します。

このメソッドは、辞書語に関する情報を認識エンジンに渡します。クライアント側で実装される [IExternalDictionary::CheckWords](/ja/fine-reader/engine/api-reference/language-related-objects/iexternaldictionary-interface/checkwords-method) メソッドから呼び出されます。このメソッドの入力パラメーターは、辞書語、単語の信頼度 (パーセンテージ) 、および IExternalDictionary インターフェイスの [CheckWords](/ja/fine-reader/engine/api-reference/language-related-objects/iexternaldictionary-interface/checkwords-method) メソッドから渡されるコレクション内の単語のインデックスです。辞書語は、対応するあいまい文字列を構成する文字のみで構成されている必要があります。

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

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

```cpp theme={null}
HRESULT ExternalDictionaryResult(
  BSTR Word,
  int  Confidence,
  int  RequestIndex
);
```

### C\#

```csharp theme={null}
void ExternalDictionaryResult(
  string Word,
  int    Confidence,
  int    RequestIndex
);
```

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

```vb theme={null}
Sub ExternalDictionaryResult( _
  Word As String, _
  Confidence As Integer, _
  RequestIndex As Integer _
)
```

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

Word

\[in] このパラメーターには、外部辞書の辞書語が格納されます。

Confidence

\[in] このパラメーターには、単語の信頼度 (パーセンテージ) が格納されます。

RequestIndex

\[in] このパラメーターには、[FuzzyStrings](/ja/fine-reader/engine/api-reference/language-related-objects/fuzzystrings) コレクション内の単語のインデックスが格納されます。

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

このメソッドには固有の戻り値はなく、[ABBYY FineReader Engine 関数の標準戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

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

[ExternalDictionaryCallback](/ja/fine-reader/engine/api-reference/language-related-objects/externaldictionarycallback)
