FootnoteSeparatorCollection

FootnoteSeparatorCollection class

Fornisce accesso tipizzato aFootnoteSeparator nodi di un documento.

public class FootnoteSeparatorCollection : IEnumerable<FootnoteSeparator>

Costruttori

NomeDescrizione
FootnoteSeparatorCollection()Default_Costruttore

Proprietà

NomeDescrizione
Item { get; }Recupera unFootnoteSeparator del tipo specificato.

Metodi

NomeDescrizione
GetEnumerator()

Esempi

Mostra come gestire il formato del separatore delle note a piè di pagina.

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

FootnoteSeparator footnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.FootnoteSeparator];
// Allinea il separatore delle note a piè di pagina.
footnoteSeparator.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;

Guarda anche