PageSetup.BookFoldPrinting property (Word)

True for Microsoft Word to print a document in a series of booklets so that the printed pages can be folded and read as a book. Read/write Boolean.

Syntax

expression.BookFoldPrinting

expression An expression that returns a PageSetup object.

Example

This example turns the active document into a booklet that prints in four-page increments.

Sub Booklet() 
 With PageSetup 
 .BookFoldPrinting = True 
 .BookFoldPrintingSheets = 4 
 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.