ApplicationEvents4_DocumentBeforePrintEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Delegate type used to add an event handler for the DocumentBeforePrint event. The DocumentBeforePrint event occurs before any open document is printed.
public delegate void ApplicationEvents4_DocumentBeforePrintEventHandler(Document ^ Doc, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_DocumentBeforePrintEventHandler(Document Doc, out bool Cancel);
type ApplicationEvents4_DocumentBeforePrintEventHandler = delegate of Document * bool -> unit
Public Delegate Sub ApplicationEvents4_DocumentBeforePrintEventHandler(Doc As Document, ByRef Cancel As Boolean)
Parameters
- Doc
- Document
The document that's being printed.
- Cancel
- Boolean
False when the event occurs. If the event procedure sets this argument to True, the document isn't printed when the procedure is finished.
- Attributes