PageSetup Object

Description

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
Properties

Application property, BottomMargin property, Creator property, DifferentFirstPageHeaderFooter property, FirstPageTray property, FooterDistance property, Gutter property, HeaderDistance property, LeftMargin property, LineNumbering property, MirrorMargins property, OddAndEvenPagesHeaderFooter property, Orientation property, OtherPagesTray property, PageHeight property, PageWidth property, PaperSize property, Parent property, RightMargin property, SectionStart property, SuppressEndnotes property, TextColumns property, TopMargin property, VerticalAlignment property.

Methods

SetAsTemplateDefault method, TogglePortrait method.