Options.PrintReverse Property

Word Developer Reference

True if Microsoft Word prints pages in reverse order. Read/write Boolean.

Syntax

expression.PrintReverse

expression   An expression that returns an Options object.

Example

This example sets Word to print pages in reverse order, and then it prints the active document.

Visual Basic for Applications
  Options.PrintReverse = True
ActiveDocument.PrintOut

This example returns the current status of the Reverse print order option on the Print tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.PrintReverse

See Also