Document.PageSetup Property

Word Developer Reference

Returns a PageSetup object that is associated with the specified document.

Syntax

expression.PageSetup

expression   A variable that represents a Document object.

Example

This example sets the right margin of the active document to 72 points (1 inch).

Visual Basic for Applications
  ActiveDocument.PageSetup.RightMargin = InchesToPoints(1)

This example displays the left margin setting, in inches.

Visual Basic for Applications
  MsgBox PointsToInches(ActiveDocument.PageSetup.LeftMargin) _
    & " inches"

See Also