HeaderFooter Property

Microsoft Word Visual Basic

HeaderFooter Property

       

Returns a HeaderFooter object for the specified selection or range. Read-only.

Note   An error occurs if the selection isn't located within a header or footer.

Example

This example adds a centered page number to the current page footer.

With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .SeekView = wdSeekCurrentPageFooter
End With
Selection.HeaderFooter.PageNumbers.Add _
    PageNumberAlignment:=wdAlignPageNumberCenter