Sdílet prostřednictvím


DocumentBase.Footnotes – vlastnost

Získává Footnotes kolekce představuje všechny poznámky pod čarou v dokumentu.

Obor názvů:  Microsoft.Office.Tools.Word
Sestavení:  Microsoft.Office.Tools.Word.v4.0.Utilities (v Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Syntaxe

'Deklarace
Public ReadOnly Property Footnotes As Footnotes
    Get
public Footnotes Footnotes { get; }

Hodnota vlastnosti

Typ: Microsoft.Office.Interop.Word.Footnotes
A Footnotes kolekce představuje všechny poznámky pod čarou v dokumentu.

Příklady

Následující příklad kódu přidá text prvního odstavce a přidá do druhého slovopoznámky pod čarou. Chcete-li použít tento příklad spustit z ThisDocument třídy v projektu úrovni dokumentu.

Private Sub DocumentFootnotes()
    Dim text As Object = "Sample footnote text."
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is sample paragraph text."
    Me.Footnotes.Location = Word.WdFootnoteLocation.wdBeneathText
    Me.Footnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman
    Me.Footnotes.Add(Me.Paragraphs(1).Range.Words(2).Characters(2), , text)
End Sub
private void DocumentFootnotes()
{
    object text = "Sample footnote text.";
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is sample paragraph text.";
    this.Footnotes.Location = Word.WdFootnoteLocation.wdBeneathText;
    this.Footnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman;
    this.Footnotes.Add(this.Paragraphs[1].Range.Words[2].Characters[2], ref missing, ref text);
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

DocumentBase Třída

Microsoft.Office.Tools.Word – obor názvů