Property: ShowWaveForm
|
Type: |
Boolean |
|
|
Properties: |
ReadWrite, available at design time and run time. |
|
| Function: |
If this property is set true, curves of wave data for the line referenced by LineForShowWavewill be shown on the control when dialing, playing, recording or monitoring silence. |
|
| Description: |
ShowWaveForm is for the whole control, not a single line. VoiceAngel can only show curves of wave data in one line at a time. The line is determined by LineForShowWave. |
|
Sample Code In Visual Basic:
¡¡
'The following code sets ShowWaveWhenRunning and LineForShowWave
'so as to watch the curves of the wave data on the first line when dialing. The
'two properties can also be set at
design time.
Sub cmdDial_Click()
VoiceAngel1.ShowWaveForm=true
VoiceAngel1.LineForShowWave = 0
VoiceAngel1.Dial "666666"
End sub
¡¡