PageSetup Object

Multiple objects
PageSetup
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

Properties | Application Property | BookFoldPrinting Property | BookFoldPrintingSheets Property | BookFoldRevPrinting Property | BottomMargin Property | CharsLine Property | Creator Property | DifferentFirstPageHeaderFooter Property | FirstPageTray Property | FooterDistance Property | Getting Help on Macintosh Keywords | Gutter Property | GutterPos Property | GutterStyle Property | HeaderDistance Property | LayoutMode Property | LeftMargin Property | LineNumbering Property | LinesPage Property | MirrorMargins Property | OddAndEvenPagesHeaderFooter Property | Orientation Property | OtherPagesTray Property | PageHeight Property | PageWidth Property | PaperSize Property | Parent Property | RightMargin Property | SectionDirection Property | SectionStart Property | SuppressEndnotes Property | TextColumns Property | TopMargin Property | TwoPagesOnOne Property | VerticalAlignment Property

Methods | SetAsTemplateDefault Method | TogglePortrait Method

Parent Objects | Document Object | Range Object | Section Object | Sections Collection | Selection Object

Child Objects | LineNumbering Object | TextColumns Object