Method: Stop


Function:

 

Stop playing or recording.     

     

Parameters:

 

None

     

Description:

 

Stop the  playing or recording process started by  StartPlaying or StartRecording.

     

Dependencies:

 

A .WAV file should be playing. (See Handling .WAV files and wave forms)

     

Events Raised:

 

None.

     

Sample Code In Visual Basic:

'The following code shows how to stop playing after a digit is detected.

Sub VoiceAngel1_DigitDetected(LineIndex as integer ,sDigit as String)

 VoiceAngel1.CurrentLineIndex = LineIndex

 VoiceAngel1.Stop

End sub