DocumentBase.Endnotes 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 an Endnotes collection that represents all the endnotes in the document.
public:
property Microsoft::Office::Interop::Word::Endnotes ^ Endnotes { Microsoft::Office::Interop::Word::Endnotes ^ get(); };
public Microsoft.Office.Interop.Word.Endnotes Endnotes { get; }
member this.Endnotes : Microsoft.Office.Interop.Word.Endnotes
Public ReadOnly Property Endnotes As Endnotes
Property Value
An Endnotes collection that represents all the endnotes in the document.
Examples
The following code example adds text to the first paragraph and then adds an endnote to the second word. To use this example, run it from the ThisDocument
class in a document-level project.
private void DocumentEndnotes()
{
object text = "Sample endnote text.";
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "This is sample paragraph text.";
this.Endnotes.Location = Word.WdEndnoteLocation.wdEndOfDocument;
this.Endnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman;
this.Endnotes.Add(this.Paragraphs[1].Range.Words[2].Characters[2], ref missing, ref text);
}
Private Sub DocumentEndnotes()
Dim text As Object = "Sample endnote text."
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "This is sample paragraph text."
Me.Endnotes.Location = Word.WdEndnoteLocation.wdEndOfDocument
Me.Endnotes.NumberStyle = Word.WdNoteNumberStyle.wdNoteNumberStyleLowercaseRoman
Me.Endnotes.Add(Me.Paragraphs(1).Range.Words(2).Characters(2), , text)
End Sub