ImageGear for C and C++ on Windows v19.3 - Updated
IG_REC_spelling_language_get
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Spelling Settings Functions > IG_REC_spelling_language_get

Inquires the current Spelling language setting of the checking subsystem.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_spelling_language_get(
   enumIGRecLanguages* pLang
);

Arguments:

Name Type Description
pLang enumIGRecLanguages* Address of a variable to get the current Spelling language setting.

Return Value:

Returns the number of ImageGear errors that occurred during this function call.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

 
Copy Code
AT_ERRCOUNT ErrCount = 0;
enumIGRecLanguages eSpellingLanguage = IG_REC_LANG_NO;
ErrCount = IG_REC_spelling_language_get(&eSpellingLanguage);