Gets a particular footnote from the collection.

GetItem()

public Footnote GetItem();

GetItem(Bool)

public Footnote GetItem(bool next);

GetItem(Int)

public Footnote GetItem(int id);

GetItem(String)

public Footnote GetItem(string name);

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.