Action
Instructs VoiceGuide to perform the specified Action.
Syntax
result = object.Action(iLineId, sAction, iParam1, iParam2, iParam3, sParam1, sParam2, sParam3)
| Part | Description |
| result | Returned value |
| object | VoiceGuide object |
| iLineId | Identification number of the line with which this function is associated. Set to 0 if not used. |
| sAction | Action to perform. |
| iParam1 | Integer parameter 1 |
| iParam2 | Integer parameter 2 |
| iParam3 | Integer parameter 3 |
| sParam1 | String parameter 1 |
| sParam2 | String parameter 2 |
| sParam3 | String parameter 3 |
Example
set vg = CreateObject("vgServices.CommandLink")
vg.Action $RV_LINEID, "setchannelstate", 0, 0, 0, "outofservice", "", ""
set vg = Nothing