Share via


PageSetup.Orientation Property

Word Developer Reference

Returns or sets the orientation of the page. Read/write WdOrientation.

Syntax

expression.Orientation

expression   Required. A variable that represents a PageSetup object.

Remarks

Some of the WdOrientation constants may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.

Example

This example changes the orientation of the document named "MyDocument.doc" and then prints the document. The example then changes the orientation of the document back to portrait.

Visual Basic for Applications
  Set myDoc = Documents("MyDocument.doc")
With myDoc
    .PageSetup.Orientation = wdOrientLandscape
    .PrintOut
    .PageSetup.Orientation = wdOrientPortrait
End With

See Also