ImageGear Professional v18.4 > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Spelling Settings Functions > IG_REC_spelling_is_enabled_get |
Inquires whether the checking subsystem is enabled or disabled.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_spelling_is_enabled_get( LPAT_BOOL pChksubsystem ); |
Name | Type | Description |
pChksubsystem | LPAT_BOOL | Address of a flag to get status: TRUE enabled, FALSE disabled. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; AT_BOOL bIsSpellingEnabled = FALSE; ErrCount = IG_REC_spelling_is_enabled_get(&bIsSpellingEnabled); |