Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a ListLevel object representing a particular level for this lst. The levels start at 0 and end at 8 (9 levels total).

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [ListLevel|ListLevel] object representing a particular level for this lst. The levels start at 0 and end at 8 \(9 levels total\).{excerpt}
{signature:C#}
 public ListLevel GetLevel(int level)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetLevel(ByVal level As Integer) As ListLevel
Parameters

...

An int representing the level to get the list level at.

Returns

A ListLevel object representing a particular level for this lst.

{signature}
{parameters}
{param:level}An {{int}} representing the level to get the list level at.{param}
{returns}A {{ListLevel}} object representing a particular level for this lst.{returns}
{example}{code:csharp|title=C#}

          ListLevel level = lst.GetLevel(0);
        
{code}
{code:vb.net
|title=vb.net
}

          Dim level As ListLevel = lst.GetLevel(0)
        {code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle