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

 public ListEntry GetEntry(int index)
Public Function GetEntry(ByVal index As Integer) As ListEntry

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)