ImageGear for C and C++ on Windows v19.9 - Updated
IG_REC_vertical_dict_available_count_get
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Vertical Dictionary Functions > IG_REC_vertical_dict_available_count_get

Gets the count of vertical dictionaries available.

Declaration:

 
Copy Code
AT_ERRCOUNT IG_REC_vertical_dict_available_count_get(
   LPAT_INT lpDictCount
);

Arguments:

Name Type Description
lpDictCount LPAT_INT Receives the count of vertical dictionaries available.

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;
ErrCount += IG_REC_vertical_dict_available_count_get(&iVDCount);