Share via


PageSetup.BookFoldPrinting Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub Booklet()
    With PageSetup
        .BookFoldPrinting = True
        .BookFoldPrintingSheets = 4
    End With
End Sub

See Also