Creates and returns an empty List at the end of this Element. By passing a boolean, it can be a numbered list (true) or a bulleted list (false).

 public virtual List InsertListAfter(boolean numbered)
Public Overridable Function InsertListAfter(ByVal numbered As Boolean) As List

A List object representing the newly created empty list.

List lst = e.InsertListAfter(true);
Dim lst As List = e.InsertListAfter(True)