PageSetup.SuppressEndnotes property (Word)

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.

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

See also

PageSetup Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.