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);
|