Description
Returns True if the script is run during the Supervisor Verification phase. Use this method to ensure that a script either only runs in a certain Verification phase, or that it does not run in a certain phase.
Applicable Events
AnyApp Pre-Application, AnyApp Post-Algorithm, AnyApp Post-Application, Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.InSupervisorVerification
Parameters
Object is a reference to the Application object. For more information, see Application Object (page Application Object).
InSupervisorVerification is the command.
Example
If Application.InSupervisorVerification Then
Exit Sub ‘Skip rule checks
End if