Share via


PageSetup.BookFoldRevPrinting Property

Word Developer Reference

True for Microsoft Word to reverse the printing order for book fold printing of bidirectional or Asian language documents. Read/write Boolean.

Syntax

expression.BookFoldRevPrinting

expression   An expression that returns a PageSetup object.

Example

This example switches from left-to-right book printing to right-to-left book printing for a bidirectional or Asian language document that will print in sixteen-page increments.

Visual Basic for Applications
  Sub BookletRev()
    With PageSetup
        .BookFoldRevPrinting = True
        .BookFoldPrintingSheets = 16
    End With
End Sub

See Also