DifferentFirstPageHeaderFooter Property
Applies To
PageSetup object.
Description
True if a different header or footer is used on the first page. Can be True, False, or wdUndefined. Read/write Long.
Example
This example checks each section in the active document for headers and footers that are different on the first page and displays a message if any are found.
For Each sec In ActiveDocument.Sections
If sec.PageSetup.DifferentFirstPageHeaderFooter = True Then
Msgbox "Section " & sec.Index & " has different first page headers & footers."
End If
Next sec