Page.ReaderSpread Property (Publisher)

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

Syntax

expression .ReaderSpread

expression A variable that represents a Page object.

Return Value

ReaderSpread

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