

| Type | Description | |||
| PageOrientationEnum | A PageOrientationEnum expression that indicates the page's orientation. | 
The following sample changes specifies an A4 Landscape page, and specifies that margins must be measured in millimeters:
With Print1
    Set .PrintExt = Grid1.Object
    .PageOrientation = exLandscape
    .Settings(exDisplayInch) = 1
    .Settings(exPaperSize) = 9
    .Preview
End With