Returns a ListEntry object representing an empty list entry that is inserted at the given index, which is indented to the level specified. index and level start at 0. The maximum level is 8 (9 levels total).

 public ListEntry InsertEntry(int index, int level)
Public Function InsertEntry(ByVal index As Integer, ByVal level As Integer) As ListEntry

An int representing the index at which to insert the new entry.

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

A ListEntry object representing the newly inserted entry.


          ListEntry entry = lst.InsertEntry(0, 0);
        

          Dim entry As ListEntry = lst.InsertEntry(0, 0)