Algorithm (Property) - 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

Read-only. Given a number (1 ≤ nNumber ≤ AlgorithmCount), this property returns the specified Algorithm object.

Applicable Events

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

Syntax

object.Algorithm (nNumber)

Parameters

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

Algorithm is the command.

nNumber is

Example

For I = 1 to Application.AlgorithmCount

Msgbox "Algorithm #" & I & " is " & Application.Algorithm(i)

Next i