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

Signature
C#
C#
<p> public ListEntry GetEntry(int index)</p>
Signature
vb.net
vb.net
<p>Public Function GetEntry(ByVal index As Integer) As ListEntry</p>
Parameters
Param
index
index

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

Returns

A ListEntry object representing the entry at a specified index.

Example
Code Block
csharp
csharp
titleC#

          ListEntry entry = lst.getEntry(0);
        
Code Block
vb.net
vb.net
titlevb.net

          Dim entry As ListEntry = lst.getEntry(0)