Endnote 对象

         
多种对象
Endnotes (Endnote)
Range

代表一个尾注。Endnote 对象是 Endnotes 集合中的一个元素。Endnotes 集合包括选定内容、区域或文档的尾注。

使用 Endnote 对象

Endnotes(index) 可返回单个的 Endnote 对象,其中 index 是索引序号。索引序号代表该尾注在选定内容、区域或文档中的位置。下列示例将选定内容中的第一个尾注设置成红色。

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

Add 方法可在 Endnotes 集合中添加尾注。下列示例紧接着选定内容添加一个尾注。

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