BookFoldRevPrinting Property

From Microsoft Word Visual Basic

Show All

BookFoldRevPrinting Property

       

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

expression.BookFoldRevPrinting

expression   Required. 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.

Sub BookletRev()
    With PageSetup
        .BookFoldRevPrinting = True
        .BookFoldPrintingSheets = 16
    End With
End Sub