Options.PrintEvenPagesInAscendingOrder Property

Word Developer Reference

True if Microsoft Word prints even pages in ascending order during manual duplex printing. Read/write Boolean.

Syntax

expression.PrintEvenPagesInAscendingOrder

expression   An expression that returns an Options object.

Remarks

If the ManualDuplexPrint argument of the PrintOut method is False, this property is ignored.

Example

This example sets Word to print odd pages in ascending order and even pages in descending order during manual duplex printing, and then it prints the active document.

Visual Basic for Applications
  Options.PrintOddPagesInAscendingOrder = True
Options.PrintEvenPagesInAscendingOrder = False
ActiveDocument.PrintOut ManualDuplexPrint:=True

See Also