RvSet
Sets the value of a Result Variable. If the Result Variable does not exit then it is created.
Syntax
object.RvSet iLineId, sRv, vValue
Part | Description |
object | VoiceGuide object |
iLineId | Identification number of the line |
sRv | Name of the Result Variable |
vValue | New value of the Result Variable |
Notes
Result Variables are reset at the beginning of a new call.
Example
set vg =
CreateObject("vgServices.CommandLink")
vg.RvSet $RV_LINEID, "ThisCallersRating", "medium"
vg.Run_ResultReturn $RV_LINEID, "Success"
set vg = Nothing