ResetContinuationNotice Method 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