WorkbookEvents_BeforePrintEventHandler Delegate

A Delegate type used to add an event handler for the BeforePrint event. The BeforePrint event occurs before the workbook (or anything in it) is printed.

Namespace:  Microsoft.Office.Interop.Excel
Assembly:  Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub WorkbookEvents_BeforePrintEventHandler ( _
    <OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New WorkbookEvents_BeforePrintEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void WorkbookEvents_BeforePrintEventHandler(
    out bool Cancel
)

Parameters

  • Cancel
    Type: System.Boolean

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

See Also

Reference

Microsoft.Office.Interop.Excel Namespace