Options.PrintBackground Property

Word Developer Reference

True if Microsoft Word prints in the background. Read/write Boolean.

Syntax

expression.PrintBackground

expression   An expression that returns an Options object.

Example

This example sets Word to print documents in the background and then prints the active document.

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

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

Visual Basic for Applications
  temp = Options.PrintBackground

See Also