PageSetup.OddAndEvenPagesHeaderFooter property (Word)
True if the specified PageSetup object has different headers and footers for odd-numbered and even-numbered pages. Read/write Long.
Syntax
expression.OddAndEvenPagesHeaderFooter
expression An expression that returns a PageSetup object.
Remarks
The OddAndEvenPagesHeaderFooter property can be True, False, or wdUndefined.
Example
This example creates different headers and footers for odd-numbered and even-numbered pages in Document1.
Set myDoc = Documents("Document1")
myDoc.PageSetup.OddAndEvenPagesHeaderFooter = True
With myDoc.Sections(1)
.Headers(wdHeaderFooterPrimary).Range _
.InsertAfter "Odd Header"
.Headers(wdHeaderFooterEvenPages).Range _
.InsertAfter "Even Header"
End With
See also
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.