Endnote Object

Endnotes
Endnote
Range

Represents an endnote. The Endnote object is a member of the Endnotes collection. The Endnotes collection represents the endnotes in a selection, range, or document.

Using the Endnote Object

Use Endnotes(index), where index is the index number, to return a single Endnote object. The index number represents the position of the endnote in the selection, range, or document. The following example applies red formatting to the first endnote in the selection.

If Selection.Endnotes.Count >= 1 Then
    Selection.Endnotes(1).Reference.Font.ColorIndex = wdRed
End If

Use the Add method to add an endnote to the Endnotes collection. The following example adds an endnote immediately after the selection.

Selection.Collapse Direction:=wdCollapseEnd
ActiveDocument.Endnotes.Add Range:=Selection.Range , _
    Text:="The Willow Tree, (Lone Creek Press, 1996)."

Properties | Application Property | Creator Property | Index Property | Parent Property | Range Property | Reference Property

Methods | Delete Method

Parent Objects

Child Objects | Range Object

See Also | Footnote Object