Inquires whether the checking subsystem is enabled or disabled.
Declaration:
|
Copy Code |
AT_ERRCOUNT ACCUAPI IG_REC_spelling_is_enabled_get(
LPAT_BOOL pChksubsystem
);
|
Arguments:
Name |
Type |
Description |
pChksubsystem |
LPAT_BOOL |
Address of a flag to get status: TRUE enabled, FALSE disabled. |
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;
AT_BOOL bIsSpellingEnabled = FALSE;
ErrCount = IG_REC_spelling_is_enabled_get(&bIsSpellingEnabled);
|