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

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#
 public ListLevel GetLevel(int level)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function GetLevel(ByVal level As Integer) As ListLevel
{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#}
Parameters
Param
level
level

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

Returns

A ListLevel object representing a particular level for this lst.

Example
Code Block
csharp
csharp
titleC#


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


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