Item

FootnoteSeparatorCollection indexer

Récupère unFootnoteSeparator du type spécifié.

public FootnoteSeparator this[FootnoteSeparatorType separatorType] { get; }

Remarques

Retoursnul si le séparateur de note de bas de page/note de fin du type spécifié n’est pas trouvé.

Exemples

Montre comment gérer le format du séparateur de notes de bas de page.

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

FootnoteSeparator footnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.FootnoteSeparator];
// Aligner le séparateur de notes de bas de page.
footnoteSeparator.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;

Voir également