FootnoteSeparatorCollection

FootnoteSeparatorCollection class

Fournit un accès typé àFootnoteSeparator nœuds d’un document.

public class FootnoteSeparatorCollection : IEnumerable<FootnoteSeparator>

Constructeurs

NomLa description
FootnoteSeparatorCollection()Default_Constructor

Propriétés

NomLa description
Item { get; }Récupère unFootnoteSeparator du type spécifié.

Méthodes

NomLa description
GetEnumerator()

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