Creates and returns an empty List at the point represented by this Position. By passing a boolean, it can be a numbered list (true) or a bulleted list (false).

 public List InsertList(boolean numbered)
Public Function InsertList(ByVal numbered As Boolean) As List

A List object representing the newly created empty list.

List lst = pos.InsertList(true);
Dim lst As List = pos.InsertList(True)