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 ListEntry object representing the entry at a specified index. The index of list entries starts at 0.

Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Function GetEntry(ByVal index As Integer) As ListEntry
Parameters

...

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

Returns

A ListEntry object representing the entry at a specified index.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle