Footers Property

Applies To

Section object.

Description

Returns a HeadersFooters collection that represents the footers in the specified section. Read-only.

See Also

Exists property, HeaderFooter property, Headers property.

Example

This example adds a right-aligned page number to the primary footer in the first section in the active document.

With ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary)
    .PageNumbers.Add PageNumberAlignment:=wdAlignPageNumberRight
End With