Reference Property
Applies To
Comment object, Endnote object, Footnote object.
Description
Returns a Range object that represents a footnote, endnote, or comment reference mark. Read-only.
See Also
Range property, Scope property.
Example
This example sets myRange to the first footnote reference mark in the active document and then copies the reference mark.
Set myRange = ActiveDocument.Footnotes(1).Reference
myRange.Copy
This example formats the comment reference marks in the selection to be red.
For Each comm In Selection.Comments
comm.Reference.Font.ColorIndex = wdRed
Next comm