PageRows Property

Applies To

Zoom object.

Description

Returns or sets the number of pages to be displayed one above the other on-screen at the same time in page layout view or print preview. Read/write Long.

See Also

PageColumns property.

Example

This example switches the active window to print preview and displays two pages one above the other.

PrintPreview = True
With ActiveWindow.View.Zoom
    .PageColumns = 1
    .PageRows = 2
End With