Document.Footnotes Property (2007 System)
Gets a Footnotes collection that represents all the footnotes in the document.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Footnotes As Footnotes
'Usage
Dim instance As Document
Dim value As Footnotes
value = instance.Footnotes
[BrowsableAttribute(false)]
public Footnotes Footnotes { get; }
[BrowsableAttribute(false)]
public:
property Footnotes^ Footnotes {
Footnotes^ get ();
}
public function get Footnotes () : Footnotes
Property Value
Type: Footnotes
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.
This example is for a document-level customization.
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);
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.