ImageGear for C and C++ on Windows v19.9 - Updated
IG_REC_spelling_is_enabled_get
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.

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