DocumentBase.Footnotes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Footnotes collection that represents all the footnotes in the document.
public:
property Microsoft::Office::Interop::Word::Footnotes ^ Footnotes { Microsoft::Office::Interop::Word::Footnotes ^ get(); };
public Microsoft.Office.Interop.Word.Footnotes Footnotes { get; }
member this.Footnotes : Microsoft.Office.Interop.Word.Footnotes
Public ReadOnly Property Footnotes As Footnotes
Property Value
A Footnotes collection that represents all the footnotes in the document.
Examples
The following code example adds text to the first paragraph and then adds a footnote to the second word. To use this example, run it from the ThisDocument
class in a document-level project.
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);
}
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