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
vb.net
vb.net
Public Function GetLevel(ByVal level As Integer) As ListLevel
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 Block
vb.net
vb.net
titlevb.net

          Dim level As ListLevel = lst.GetLevel(0)