Property: Awake


Type:

 

Boolean

     

Properties:

 

ReadWrite, available at both design and run time.

     

Function:

 

When Awake is FALSE, Connected, Busy and BusyOrShutdown events will be ignored. It means that these events will not be raised.

     

Description:

 

The Awake property helps when watching the wave shapes of the signals on the line. You can use it when developing to ignore events that would stop display of the wave form.

     

Sample Code In Visual Basic:

'The following code sets Awake false before the execution of Dial, to ignore the events about line status. Because wave display will stop when one of the events occurs, it is necessary to suppress them so we can monitor the wave form. Setting Awake to FALSE prevents the events occurring and allows monitoring of the wave signals on the line.

Sub cmdDial_Click()

  VoiceAngel1.Awake = False

  VoiceAngel1.Dial "888888"

End sub

¡¡