Workbook.AddinUninstall Event (2007 System)

Occurs when the workbook is uninstalled as an add-in.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)

Syntax

'Declaration
Public Event AddinUninstall As WorkbookEvents_AddinUninstallEventHandler
'Usage
Dim instance As Workbook 
Dim handler As WorkbookEvents_AddinUninstallEventHandler 

AddHandler instance.AddinUninstall, handler
public event WorkbookEvents_AddinUninstallEventHandler AddinUninstall
public:
 event WorkbookEvents_AddinUninstallEventHandler^ AddinUninstall {
    void add (WorkbookEvents_AddinUninstallEventHandler^ value);
    void remove (WorkbookEvents_AddinUninstallEventHandler^ value);
}
JScript does not support events.

Remarks

The add-in does not automatically close when it is uninstalled.

Examples

The following code example demonstrates a handler for the AddinUninstall event. The event handler minimizes Microsoft Office Excel when the workbook is uninstalled as an add-in.

This example is for a document-level customization.

Sub ThisWorkbook_AddinUninstall() Handles Me.AddinUninstall
    Me.Application.WindowState = Excel.XlWindowState.xlMinimized
End Sub
private void WorkbookAddinUninstall()
{
    this.AddinUninstall +=
        new Excel.WorkbookEvents_AddinUninstallEventHandler(
        ThisWorkbook_AddinUninstall);
}

void ThisWorkbook_AddinUninstall()
{
    this.Application.WindowState = Excel.XlWindowState.xlMinimized;
}

.NET Framework Security

See Also

Reference

Workbook Class

Workbook Members

Microsoft.Office.Tools.Excel Namespace