Description
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).
C#
public virtual List InsertListAfter(boolean numbered) |
vb.net
Public Overridable Function InsertListAfter( ByVal numbered As Boolean ) As List |
Parameters
numbered
Returns
AList
object representing the newly created empty list.
Examples
C#
List lst = e.InsertListAfter( true ); |
vb.net
Dim lst As List = e.InsertListAfter(True) |