语法
表达式.SuppressEndnotes
表达式 返回 PageSetup 对象的表达式。
说明
在该节的尾注之前打印隐藏的尾注。仅当 Location 属性设为 wdEndOfSection 时,该属性才有效。
示例
本示例隐藏活动文档中第一节的尾注。
if(ActiveDocument.Endnotes.Location == wdEndOfSection) { ActiveDocument.Sections.Item(1).PageSetup.SuppressEndnotes = true }