PrintEvenPagesInAscendingOrder Property

Microsoft Word Visual Basic

PrintEvenPagesInAscendingOrder Property

       

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