SuppressEndnotes 属性

       

如果该属性值为 True,则在下一个没有隐藏尾注的节的末尾打印尾注。打印该节的尾注之前打印隐藏的尾注。Long 类型,可读写。

expression.SuppressEndnotes

expression   必需。该表达式返回一个 PageSetup 对象。

说明

必须将 Location 属性设为 wdEndOfSection,该属性才有效。

示例

本示例隐藏活动文档中第一节的尾注。

If ActiveDocument.Endnotes.Location = wdEndOfSection Then
    ActiveDocument.Sections(1).PageSetup.SuppressEndnotes = True
End If