Event: Ringing
|
Function: |
When someone calls you, this event is raised each time the phone rings. |
|
| Parameters: |
LineIndex: The index of the line on which the evento ccurs.
numRing: The number of rings that have occurred, including this one. |
|
| Description: |
Once the ring event occurs, you can use the Answer method to answer the call. |
|
| Raised By: |
Incoming phone call |
|
Sample Code In Visual Basic:
'The following code answers the call at the third ring.
Sub VoiceAngel1_Ring(LineIndex as Integer,numRing as Integer )
if numRing = 3 then
VoiceAngel1.Answer
End If
End sub
¡¡