Document.PrintPostScriptOverText Property

Word Developer Reference

True if PRINT field instructions (such as PostScript commands) in a document are to be printed on top of text and graphics when a PostScript printer is used. Read/write Boolean.

Syntax

expression.PrintPostScriptOverText

expression   A variable that represents a Document object.

Remarks

The PrintPostScriptOverText property controls whether postscript code is printed in a converted Microsoft Word for Macintosh document. If the document contains no PRINT fields, this property has no effect.

Example

This example sets Word to print PRINT field instructions on top of text and graphics, and then it prints the active document.

Visual Basic for Applications
  ActiveDocument.PrintPostScriptOverText = True
ActiveDocument.PrintOut

This example returns the current status of the Print PostScript over text check box in the Printing options area on the Print tab in the Options dialog box.

Visual Basic for Applications
  currSet = ActiveDocument.PrintPostScriptOverText

See Also