Resets the footnote or endnote continuation notice to the default notice. The default notice is blank (no text).
expression.ResetContinuationNotice
expression Required. An expression that returns an Endnotes or Footnotes object.
Example
This example resets the endnote continuation notice for the active document.
ActiveDocument.Endnotes.ResetContinuationNotice
This example resets the footnote continuation notice and sets the starting number for footnote reference marks to 2 in Sales.doc.
With Documents("Sales.doc").Sections(1).Range.Footnotes
.ResetContinuationNotice
.NumberingRule = wdRestartContinuous
.StartingNumber = 2
End With