Multiple objectsPageSetup
Multiple objects
Represents the page setup description. The PageSetup object contains all the page setup attributes of a document (left margin, bottom margin, paper size, and so on) as properties.
Using the PageSetup Object
Use the PageSetup property to return the PageSetup object. The following example sets the first section in the active document to landscape orientation and then prints the document.
ActiveDocument.Sections(1).PageSetup.Orientation = _
wdOrientLandscape
ActiveDocument.PrintOut
The following example sets all the margins for the document named "Sales.doc."
With Documents("Sales.doc").PageSetup
.LeftMargin = InchesToPoints(0.75)
.RightMargin = InchesToPoints(0.75)
.TopMargin = InchesToPoints(1.5)
.BottomMargin = InchesToPoints(1)
End With