RvSet_RvList
|
VoiceGuide COM Reference
|
Sets a number of Result Variables.
If any of the the Result Variables do not exit then they are
created.
Syntax
object.RvSet_RvList
iLineId, sRvList
|
Part
|
Description
|
|
|
object
|
VoiceGuide object
|
|
|
iLineId
|
Identification number of the line
|
|
| sRvList
|
List of Result Variables and their values. Each
RV-Value pair is in format [Name]{Value} a number of RV-Value pairs can be specified one after
another. |
|
Remarks
Result Variables are reset at the
beginning of a new call.
Example
set vg =
CreateObject("vgServices.CommandLink")
'sets two Result variables - which will be able to be accessed
'later as $RV[CallersRating] and $RV[CallersPreference]
vg.RvSet_RvList $RV_LINEID,
"[CallersRating]{medium}[CallersPreference]{blue}"
set vg = Nothing
|