PrintEvenPagesInAscendingOrder Property

PrintEvenPagesInAscendingOrder Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

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

expression.PrintEvenPagesInAscendingOrder

expression   Required. An expression that returns an Options object.

Remarks

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

For more information on using Word with East Asian languages, see Word features for East Asian languages.

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.

  Options.PrintOddPagesInAscendingOrder = True
Options.PrintEvenPagesInAscendingOrder = False
ActiveDocument.PrintOut ManualDuplexPrint:=True