Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
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}{signature:vb.net
vb.net
}
Public Function InsertList(ByVal numbered As Boolean) As List
Parameters

...

Returns

A List object representing the newly created empty 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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle