ResetContinuationNotice Method
Applies To
Endnotes collection object, Footnotes collection object.
Description
Resets the footnote or endnote continuation notice to the default notice. The default notice is blank (no text).
Syntax
expression.ResetContinuationNotice
expression Required. An expression that returns an Endnotes or Footnotes object.
See Also
ContinuationNotice property, ResetContinuationSeparator method, ResetSeparator 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