DocumentBeforePrint Event

See Also         Example         Applies To

Occurs before any open document is printed.

Syntax

Private Sub object_DocumentBeforePrint(ByVal Doc As Document, ByVal Cancel As Boolean)

object   An object of type Application declared with events in a class module. For more information about using events with the Application object, see Using Events with the Application Object.

Doc   The document that's being printed.

Cancel   False when the event occurs. If the event procedure sets this argument to True, the document isn't printed when the procedure is finished.