AppEvents_WorkbookBeforePrintEventHandler Delegate
A Delegate type used to add an event handler for the WorkbookBeforePrint event. The WorkbookBeforePrint event occurs before any open workbook 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 AppEvents_WorkbookBeforePrintEventHandler ( _
Wb As Workbook, _
<OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New AppEvents_WorkbookBeforePrintEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void AppEvents_WorkbookBeforePrintEventHandler(
Workbook Wb,
out bool Cancel
)
Parameters
Wb
Type: Microsoft.Office.Interop.Excel.WorkbookThe workbook.
Cancel
Type: System.BooleanFalse when the event occurs. If the event procedure sets this argument to True, the workbook isn't printed when the procedure is finished.