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)
{signature}{signature:</p>
} Public
Signature
vb.net
vb.net

<p>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</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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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