Vm_VmbConfig_Get
|
VoiceGuide COM Reference
|
Retrieves a property value for a
particular voicemail box.
Syntax
sCurrentValue =
object.Vm_VmbConfig_Get(sVmbId, sTag)
|
Part
|
Description
|
|
|
object
|
Required. VoiceGuide object
|
|
| sVmbId
|
Required. The ID of the Voicemail box who's
property is to be retrieved.
|
|
| sTag
|
Required. The name of the property to be
retrieved.
|
|
| sCurrentValue
|
Required. The current value of the
property.
|
|
Remarks
Returns the information stored for
the specified property. The actual information returned will be the
contents in the VmBoxList.xml file between <sTag> and
</sTag> for the selected Voicemail Box.
Example
set vg =
CreateObject("vgServices.CommandLink")
sPin = vg.Vm_VmbConfig_Get("0001", "Pin")
set vg = Nothing
|