Returns a ListLevel object representing a particular level for this lst. The levels start at 0 and end at 8 (9 levels total).

 public ListLevel GetLevel(int level)
Public Function GetLevel(ByVal level As Integer) As ListLevel

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

A ListLevel object representing a particular level for this lst.


          ListLevel level = lst.GetLevel(0);
        

          Dim level As ListLevel = lst.GetLevel(0)