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

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

A List object representing the newly created empty list.

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