


CompletionCode property
The CompletionCode property contains the reason for completion for the last
call to an ActiveAG method. The different values that this property can contain
are described in the
This example illustrates one possible use of this property:
if (ActiveAG.CompletionCode = AagConCED) then
ActiveAG.FaxSend (FaxFiles)
end if
if (ActiveAG.CompletionCode = AagConVoiceBegin) then
ActiveAG.PlayVoice (
end if
This property is volatile; it can change after each call to an ActiveAG
method. This property is also read-only.
CompletionCode is a read-only property. If your program attempts to set it, the setting will
be ignored.
Data type: short Default value: 0 (SUCCESS) Units: None
Method interactions: Most methods set this property to indicate how they completed, if successful.
Event interactions: None.