Options.PrintOddPagesInAscendingOrder Property

Word Developer Reference

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

Syntax

expression.PrintOddPagesInAscendingOrder

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 Microsoft 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