Description
Read-only. Returns the current Verification phase as indicated by the following:
-
PHASE_NOTINVFY
-
PHASE_PASS1
-
PHASE_PASS2
-
PHASE_SUPERVISOR
-
PHASE_AUDITOR
-
PHASE_BALANCING
-
PHASE_HSV
Applicable Events
Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.VerificationPhase
Parameters
Object is a reference to the Application object. For more information, see Application Object (page Application Object).
VerificationPhase is the command.
Example
Dim nPhase, strPhase
nPhase = Application.VerificationPhase
strPhase = "Unknown"
If nPhase = PHASE_NOTINVFY Then strPhase = "Not in"
If nPhase = PHASE_PASS1 Then strPhase = "In Pass 1"
If nPhase = PHASE_PASS2 Then strPhase = "In Pass 2"
If nPhase = PHASE_SUPERVISOR Then strPhase = "In Supervisor"
If nPhase = PHASE_AUDITOR Then strPhase = "In Auditor"
If nPhase = PHASE_BALANCING Then strPhase = "In Balancing"
If nPhase = PHASE_HSV Then strPhase = "In HSV"
MsgBox strPhase & " Verification"