FootnoteSeparatorCollection

Inheritance: java.lang.Object

All Implemented Interfaces: java.lang.Cloneable, java.lang.Iterable

public class FootnoteSeparatorCollection implements Cloneable, Iterable

Provides typed access to T:Aspose.Words.Notes.FootnoteSeparator nodes of a document.

Examples:

Shows how to manage footnote separator format.


 Document doc = new Document(getMyDir() + "Footnotes and endnotes.docx");

 FootnoteSeparator footnoteSeparator = doc.getFootnoteSeparators().getByFootnoteSeparatorType(FootnoteSeparatorType.FOOTNOTE_SEPARATOR);
 // Align footnote separator.
 footnoteSeparator.getFirstParagraph().getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
 

Methods

MethodDescription
getByFootnoteSeparatorType(int separatorType)
iterator()

getByFootnoteSeparatorType(int separatorType)

public FootnoteSeparator getByFootnoteSeparatorType(int separatorType)

Parameters:

ParameterTypeDescription
separatorTypeint

Returns: FootnoteSeparator

iterator()

public Iterator iterator()

Returns: java.util.Iterator