PageSetup.BookFoldPrinting Property (Word)
True for Microsoft Word to print a document in a series of booklets so 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