Share via


PageSetup.SuppressEndnotes Property

Word Developer Reference

True if endnotes are printed at the end of the next section that doesn't suppress endnotes. Read/write Long.

Syntax

expression.SuppressEndnotes

expression   An expression that returns a PageSetup object.

Remarks

Suppressed endnotes are printed before the endnotes in that section. This property takes effect only if the Location property is set to wdEndOfSection.

Example

This example suppresses endnotes in the first section of the active document.

Visual Basic for Applications
  If ActiveDocument.Endnotes.Location = wdEndOfSection Then
    ActiveDocument.Sections(1).PageSetup.SuppressEndnotes = True
End If

See Also