Inquires whether a particular feature of the Recognition component is licensed.
Declaration:
Copy Code | |
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_is_feature_licensed_get( enumIGRecFeatures Feature, LPAT_BOOL lpIsLicensed ); |
Arguments:
Name | Type | Description |
Feature | enumIGRecFeatures | Specifies the feature of the Recognition component. |
lpIsLicensed | LPAT_BOOL | Returns TRUE if the feature is licensed, and FALSE is the feature is not licensed. |
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 bIsLicensed = FALSE; ErrCount = IG_REC_is_feature_licensed_get(IG_REC_FEATURE_OCR, &bIsLicensed); |
Remarks:
The enumIGRecFeatures enumeration lists the features that are licensed separately.