FuzzyCompareNoCase (Method) - OCR for AnyDoc - Foundation 23.1 - Foundation 23.1 - AnyDoc - external

OCR for AnyDoc Programming Reference Guide

Platform
AnyDoc
Product
OCR for AnyDoc
Release
Foundation 23.1
License

Description

Returns True if the ANSI data stored in the object matches a given string, case insensitive, within a given percentage of the row (not a percentage of the word).

Applicable Events

Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify

Syntax

object.FuzzyCompareNoCase strValue, intPercent

Parameters

Object is a reference to the Zone or Line object. For more information, see Zone Object (page Zone Object) or Line Object (page Line Object).

FuzzyCompareNoCase is the command.

strValue is a string expression of the value to be used in the comparison.

intPercent is a number indicating the percentage that the strings must match.

Example

If MyZone.FuzzyCompareNoCase("name", 90) Then

MyZone.Flagged = True

End if