Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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).

Signature
C#
C#
 public virtual List InsertListBefore(boolean numbered)
Signature
vb.net
vb.net
Public Overridable Function InsertListBefore(ByVal numbered As Boolean) As List
Parameters
Param
numbered
numbered

Returns

A List object representing the newly created empty list.

Example
Code Block
csharp
csharp
titleC#
List lst = e.InsertListBefore(true);
Code Block
vb.net
vb.net
titlevb.net
Dim lst As List = e.InsertListBefore(True)