Returns a ListEntry object representing the entry at a specified index. The index of list entries starts at 0.

<p> public ListEntry GetEntry(int index)</p>
<p>Public Function GetEntry(ByVal index As Integer) As ListEntry</p>

An int representing the level to get the list entry at.

A ListEntry object representing the entry at a specified index.


          ListEntry entry = lst.getEntry(0);
        

          Dim entry As ListEntry = lst.getEntry(0)