Specifies a set of individual characters, the FilterPlus characters.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_filterplus_set( LPCWSTR pFilterPlus ); |
Name | Type | Description |
---|---|---|
pFilterPlus | LPCWSTR | Pointer to a UNICODE string containing the FilterPlus characters to be set. (The string is terminated with a double zero.) |
This function does not process image pixels.
The FilterPlus characters broaden or define the filtered set of characters globally or on a per-zone basis. To validate these FilterPlus characters, the zone's filter field should have the IG_REC_FILTER_PLUS value enabled, with or without other filter elements.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0;
enumIGRecChrFilter eFilter = {IG_REC_FILTER_ALPHA | IG_REC_FILTER_DIGIT | IG_REC_FILTER_PLUS};
ErrCount += IG_REC_default_filter_set(eFilter);
ErrCount += IG_REC_filterplus_set(L"-|+=");
|