ReaderSpread Property

       

Returns a ReaderSpread object that represents the reader spread of the specified page.

expression.ReaderSpread

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example checks to see if the reader spread for the specified page includes less than two pages. If it does, it changes the reader spread to include two pages.

Sub SetFacingPages()
    With ActiveDocument.Pages(2).ReaderSpread
        If .PageCount < 2 Then _
            ActiveDocument.ViewTwoPageSpread = True
    End With
End Sub