Selection.HeaderFooter Property

Word Developer Reference

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

Syntax

expression.HeaderFooter

expression   A variable that represents a Selection object.

Remarks

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.

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

See Also