Borders.SurroundFooter Property

Word Developer Reference

True if a page border encompasses the document footer. Read/write Boolean.

Syntax

expression.SurroundFooter

expression   An expression that returns a Borders collection object.

Example

This example formats the page border in section one of the active document so that it encompasses the header and footer on each page in the section.

Visual Basic for Applications
  With ActiveDocument.Sections(1).Borders
    .SurroundFooter = True
    .SurroundHeader = True
End With

This example adds a graphical page border around each page in section one. The page border doesn't encompass the header and footer areas.

Visual Basic for Applications
  With ActiveDocument.Sections(1)
    .Borders.SurroundFooter = False
    .Borders.SurroundHeader = False
    For Each aBord In .Borders
        aBord.ArtStyle = wdArtPeople
        aBord.ArtWidth = 15
    Next aBord
End With

See Also