AppEvents_WorkbookAddinInstallEventHandler Delegate 

A Delegate type used to add an event handler for the WorkbookAddinInstall event. The WorkbookAddinInstall event occurs when a workbook is installed as an add-in.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(Wb As Workbook)
End Sub
Dim appEvents_WorkbookAddinInstallEventHandler1 As New AppEvents_WorkbookAddinInstallEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub AppEvents_WorkbookAddinInstallEventHandler( _
    <InAttribute()> ByVal Wb As Workbook _
)
public delegate void AppEvents_WorkbookAddinInstallEventHandler(
    [In] Workbook Wb
);
public delegate Void AppEvents_WorkbookAddinInstallEventHandler(
    Workbook^ Wb
);
public delegate void AppEvents_WorkbookAddinInstallEventHandler(
    /*in*/Workbook Wb
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Wb
    The installed workbook.

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