Returns a ListEntry object representing an empty list entry added to the end of the list, which is indented to the level specified. Level can be between 0 and 8 (9 levels total).

 public ListEntry AddEntry(int level)
Public Function AddEntry(ByVal level As Integer) As ListEntry

An int representing the level to assign to the new entry.

A ListEntry object representing the newly added entry.


          ListEntry entry = lst.AddEntry(0);
        

          Dim entry As ListEntry = lst.AddEntry(0)