BookFoldPrinting Property

Microsoft Word Visual Basic

BookFoldPrinting Property

       

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.

expression.BookFoldPrinting

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