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 [ListEntry|ListEntry] object representing the entry at a specified index. The index of list entries starts at 0.{excerpt}
{signature:C#}
 public ListEntry GetEntry(int index)
{signature}{signature:vb.net}
Public Function GetEntry(ByVal index As Integer) As ListEntry
{signature}
{parameters}
{param:index}An {{int}} representing the level to get the list entry at.{param}
{returns}A {{ListEntry}} object representing the entry at a specified index.{returns}
{example}{code:csharp|title=C#}

          ListEntry entry = lst.getEntry(0);
        {code}
{code:vb.net|title=vb.net}

          Dim entry As ListEntry = lst.getEntry(0)
        {code}

{example}