跳轉到主要內容
此方法會將字典中的單字資訊傳送給辨識器。它是由實作於用戶端的 IExternalDictionary::CheckWords 方法所呼叫。此方法的輸入參數包括:字典單字、以百分比表示的單字信賴度,以及從 IExternalDictionary 介面的 CheckWords 方法傳入之集合中該單字的索引。字典單字必須由對應模糊字串中的字元所組成。

語法

C++

HRESULT ExternalDictionaryResult(
  BSTR Word,
  int  Confidence,
  int  RequestIndex
);

C#

void ExternalDictionaryResult(
  string Word,
  int    Confidence,
  int    RequestIndex
);

Visual Basic .NET

Sub ExternalDictionaryResult( _
  Word As String, _
  Confidence As Integer, _
  RequestIndex As Integer _
)

參數

Word [in] 此參數包含來自外部字典的單字。 Confidence [in] 此參數包含該單字的信賴度百分比。 RequestIndex [in] 此參數包含該單字在 FuzzyStrings 集合中的索引。

回傳值

此方法沒有特定的回傳值。它會回傳 ABBYY FineReader Engine 函式的標準回傳值

另請參閱

ExternalDictionaryCallback