Selection.PageSetup Property

Word Developer Reference

Returns a PageSetup object that's associated with the specified selection.

Syntax

expression.PageSetup

expression   A variable that represents a Selection object.

Example

This example sets the header and footer distance to 18 points (0.25 inch) from the top and bottom of the page, respectively. This formatting change is applied to the section that contains the selection.

Visual Basic for Applications
  With Selection.PageSetup
    .FooterDistance = 18
    .HeaderDistance = 18
End With

See Also