AreaContainsBlob (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

Gives a rectangle representing an area on the current data image. True is returned if there is a glyph of at least the given height and width.

AnyDoc Software does not recommend using this property. It is provided here for backwards compatibility only.

Applicable Events

AnyApp Pre-Application, AnyApp Post-Algorithm, AnyApp Post-Application

Syntax

object.AreaContainsBlob(objRect, nWidth, nHeight)

Parameters

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

AreaContainsBlob is the command.

objRect indicates the area is a rectangle.

nWidth is the width of the rectangle.

nHeight is the height of the rectangle.

Example

Set r = MyAlg.Solution(1).Area

If Application.AreaContainsBlob(r, 100, 100) then

MsgBox "Solution 1 contains a blob"

End if