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)

Usage

Sub Sub1(Cancel As Boolean)
End Sub
Dim workbookEvents_BeforePrintEventHandler1 As New WorkbookEvents_BeforePrintEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_BeforePrintEventHandler( _
    <InAttribute(), OutAttribute()> ByRef Cancel As Boolean _
)
public delegate void WorkbookEvents_BeforePrintEventHandler(
    [In, Out] ref bool Cancel
);
public delegate Void WorkbookEvents_BeforePrintEventHandler(
    &Boolean Cancel
);
public delegate void WorkbookEvents_BeforePrintEventHandler(
    /*in*/boolean Cancel
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

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

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace