PageSetup.Orientation property (Word)

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.

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

See also

PageSetup Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.