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
Wiki Markup
{description}
{excerpt}Creates and returns an empty [List|List] at the point represented by this Position. By passing a boolean, it can be a numbered list \(true\) or a bulleted list \(false\).{excerpt}
{signature:C#}
 public List InsertList(boolean numbered)
{signature}{signature:vb.net}
Public Function InsertList(ByVal numbered As Boolean) As List
{signature}
{parameters}
{param:numbered}{param}
{returns}A {{List}} object representing the newly created empty list.{returns}
{example}{code:csharp|title=C#}
List lst = pos.InsertList(true);{code}
{code:vb.net|title=vb.net}
Dim lst As List = pos.InsertList(True){code}

{example}