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.
이 메서드는 사전 단어에 대한 정보를 인식기로 전달합니다. 이 메서드는 클라이언트 측에서 구현되는 IExternalDictionary::CheckWords 메서드에서 호출됩니다. 이 메서드의 입력 매개변수는 사전 단어, 백분율로 표시되는 단어 신뢰도, 그리고 IExternalDictionary 인터페이스의 CheckWords 메서드에서 전달된 컬렉션에서 해당 단어의 인덱스입니다. 사전 단어는 해당 퍼지 string의 문자들로 구성되어야 합니다.
HRESULT ExternalDictionaryResult(
BSTR Word,
int Confidence,
int RequestIndex
);
void ExternalDictionaryResult(
string Word,
int Confidence,
int RequestIndex
);
Sub ExternalDictionaryResult( _
Word As String, _
Confidence As Integer, _
RequestIndex As Integer _
)
Word
[in] 이 매개변수에는 외부 사전의 단어가 포함됩니다.
Confidence
[in] 이 매개변수에는 단어 신뢰도가 백분율로 포함됩니다.
RequestIndex
[in] 이 매개변수에는 FuzzyStrings 컬렉션에서 해당 단어의 인덱스가 포함됩니다.
이 메서드에는 특정 반환 값이 없으며, ABBYY FineReader Engine 함수의 표준 반환 값을 반환합니다.
ExternalDictionaryCallback