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 fewer 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
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.