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
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: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#}

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

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

{example}