ImageGear Professional DLL v17.1 for Windows Accusoft
IG_REC_approx_regex_is_case_sensitive_get
Send Feedback  
ImageGear Professional DLL v17.1 for Windows > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Approx Regex Functions > IG_REC_approx_regex_is_case_sensitive_get

Glossary Item Box

Identifies whether case-sensitive searches are enabled or disabled.

Declaration:

  Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_approx_regex_is_case_sensitive_get(
   const HIG_REC_APPROX_REGEX higRecApproxRegex,
   const LPAT_BOOL lpIsEnabled
);

Arguments:

higRecApproxRegex The handle to an approximate regex instance.
lpIsEnabled The current toggle value.

Return Value:

The number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.

Supported Raster Image Formats:

This function does not process image pixels.

Remarks:

When enabled, case-sensitivity is ignored when seeking pattern matches.

The default value is TRUE.

Example:

  Copy Code
AT_ERRCOUNT errCount = 0 ;
AT_BOOL is_case_sensitive = 0 ;
HIG_REC_APPROX_REGEX higRecApproxRegex = 0 ;

IG_REC_approx_regex_create( &higRecApproxRegex ) ;
errCount = IG_REC_approx_regex_is_case_sensitive_get
                         ( higRecApproxRegex, 
                           &is_case_sensitive 
                         ) ;
IG_REC_approx_regex_delete( higRecApproxRegex ) ;

See Also

HIG_REC_APPROX_REGEX

©2012. Accusoft Corporation. All Rights Reserved.