Поделиться через


Footnotes.ResetContinuationNotice Method

Word Developer Reference

Resets the footnote or endnote continuation notice to the default notice.

Syntax

expression.ResetContinuationNotice

expression   Required. A variable that represents a Footnotes collection.

Remarks

The default notice is blank (no text).

Example

This example resets the footnote continuation notice and sets the starting number for footnote reference marks to 2 in Sales.doc.

Visual Basic for Applications
  With Documents("Sales.doc").Sections(1).Range.Footnotes
    .ResetContinuationNotice
    .NumberingRule = wdRestartContinuous
    .StartingNumber = 2
End With

See Also