Method: GenerateDigits
|
Function: |
Generate a series of digits on the line, the same as if they had been pressed on the phone keypad. |
|
|
Parameters: |
sDigits
A string representing the digits to be transmitted. Valid characters are: 0 - 9 * , # The comma can be used to generate a pause. e.g. 1,23 would generate a 1, then a pause, then the digits 23 together.(This is useful if you need to dial out through a PABX and need to obtain an outside line.) |
|
| Description: |
Use this method to dial out. |
|
| Dependencies: |
Only invoke this method after the Connected event. |
|
| Events Raised: |
None. |
|
Sample Code In Visual Basic:
Sub VoiceAngel1_Connected(LineIndex as integer ,fIncoming as boolean )
VoiceAngel1.CurrentLineIndex = LineIndex
VoiceAngel1.GenerateDigits "1 ,2"
End sub