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 point represented by this Position. By passing a boolean, it can be a numbered list (true) or a bulleted list (false).

Signature
C#
C#
 public List InsertList(boolean numbered)
{signature}{signature:
}
Signature
vb.net
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#}
Parameters
Param
numbered
numbered

Returns

A List object representing the newly created empty list.

Example
Code Block
csharp
csharp
titleC#

List lst = pos.InsertList(true);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim lst As List = pos.InsertList(True)
{code} {example}