Property: CurrentLineName
|
Type: |
String |
|
|
Properties: |
Available only at run time. |
|
| Function: |
Get the description of the current line or set the current line. |
|
| Description: |
Current line can also be set by calling CurrentLineIndex |
|
Sample Code In Visual Basic:
'The following code shows how to add the description of each line to a list box.
Sub Form_Load ()
VoiceAngel1.Initialize ""
For i=0 to VoiceAngel1.LineCount -1
VoiceAngel1.CurrentLineIndex = i
cmbLines.AddItem VoiceAngel1.CurrentLineName
Next i
End sub