RvGet_All
|
VoiceGuide COM Reference
|
Returns all the Result Variables
current for the specified line.
Syntax
sResult =
object.RvGet_All(iLineId)
|
Part
|
Description
|
|
|
object
|
VoiceGuide object
|
|
|
iLineId
|
Identification number of the line
|
|
| sResult
|
Result Variables currently defined for the
selected line.
|
|
Remarks
Result Variables are reset at the
beginning of a new call. Hence they are available for querying
after the call has finished, but before a new call has begun on the
same line.
Example
set vg =
CreateObject("vgServices.CommandLink")
'see what Result Varaibles are currently defined on current
line
sReturnValue = vg.RvGet_All($RV_LINEID)
set vg = Nothing
MsgBox sReturnValue
|