PageSetup.BookFoldRevPrinting property (Word)

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.

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

See also

PageSetup Object

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.