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