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 ()
va.Initialize ""
For i=0 to va.LineCount -1
va.CurrentLineIndex = i
cmbLines.AddItem va.CurrentLineName
Next i
End sub