Gets a particular footnote from the collection.

GetItem()

public Footnote GetItem();
Public Function GetItem() As Footnote

GetItem(Bool)

public Footnote GetItem(bool next);
Public Function GetItem(ByVal next As Boolesn) As Footnote

GetItem(Int)

public Footnote GetItem(int id);
Public Function GetItem(ByVal id As Integer) As Footnote

GetItem(String)

public Footnote GetItem(string name);
Public Function GetItem(ByVal name As String) As Footnote

Parameters

Parameter Description
next If this parameter is true, the next footnote in the textflow is returned. If this parameter is false, the previous footnote in the textflow is returned. The next or the previous footnote is returned independent whether there is a footnote mark at the current text input position.
id Specifies the footnote's identifier set with the footnote's constructor or the ID property. The method returns null, if a footnote with the specified identifier does not exist.
name Specifies the footnote's name set with set with the footnote's constructor or the Name property. The method returns null, if a footnote with the specified name does not exist.

Return Value

The return value is null, if a footnote with the specified parameters could not be found. Otherwise, it is an object of the type Footnote.