ResetContinuationSeparator 方法

       

重新设置脚注或尾注接续分隔符为默认分隔符。默认分隔符是一个长水平线,该水平线分隔文档文本与接续上页的注明。

expression.ResetContinuationSeparator

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

示例

本示例重新设置脚注接续分隔符为默认分隔符线。

ActiveDocument.Footnotes.ResetContinuationSeparator

本示例重新设置每篇打开文档中第一节的尾注接续分隔符。

Dim docLoop As Document

For Each docLoop In Documents
    docLoop.Sections(1).Range.Endnotes _
        .ResetContinuationSeparator
Next docLoop