ImageGear Professional DLL v17.1 for Windows Accusoft
IG_REC_vertical_dict_disable
Send Feedback  
ImageGear Professional DLL v17.1 for Windows > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Vertical Dictionary Functions > IG_REC_vertical_dict_disable

Glossary Item Box

Disables a vertical dictionary for use by the checking module.

Declaration:

  Copy Code
AT_ERRCOUNT IG_REC_vertical_dict_disable(
   const AT_CHAR * description
);

Arguments:

description Description of the dictionary to disable, obtained from IG_REC_vertical_dict_available_desc_get.

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_INT iVDCount = 0;
AT_INT iVDIndex = 0;
AT_INT iDescLen = 0;
AT_CHAR* lpBuffer = 0;
AT_BOOL bEnabled = FALSE;

ErrCount += IG_REC_vertical_dict_available_count_get(&iVDCount);
while(iVDIndex < iVDCount)
{
    ErrCount += IG_REC_vertical_dict_available_desc_len_get(iVDIndex, &iDescLen);
    lpBuffer = (AT_CHAR*) malloc(iDescLen * sizeof(AT_CHAR));
    if(lpBuffer)
    {
        ErrCount += IG_REC_vertical_dict_available_desc_get(iVDIndex, lpBuffer, iDescLen);

        //...

        ErrCount += IG_REC_vertical_dict_disable(lpBuffer);
        free(lpBuffer);
    }
    iVDIndex++;
}

©2012. Accusoft Corporation. All Rights Reserved.