Property: LineForShowWave
|
Type: |
Integer |
|
|
Properties: |
ReadWrite, available at design time and run time. |
|
| Function: |
If ShowWaveWhenRunning is set true, this property determines which line's wave data will be shown on the VoiceAngel control. |
|
| Description: |
LineForShowWave is for the whole control, not a single line. VoiceAngel can only show curves of wave data on 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.ShowWaveWhenRunning=true
VoiceAngel1.LineForShowWav =0
VoiceAngel1.Dial "666666"
End sub
¡¡