ViewTwoPageSpread Property

Microsoft Publisher Visual Basic

expression.ViewTwoPageSpread

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

Example

This example opens a message box and displays if the current publication should be viewed in the in the two page spread mode.

Sub ViewTwoPage()

    MsgBox "View Two Page Spread = " & _
        Application.ActiveDocument.ViewTwoPageSpread

End Sub