Skip to content

Latest commit

 

History

History
49 lines (23 loc) · 894 Bytes

8c02eb17-e966-703d-36ed-30ce43a56275.md

File metadata and controls

49 lines (23 loc) · 894 Bytes

Application.WorkbookAddinUninstall Event (Excel)

Occurs when any add-in workbook is uninstalled.

Syntax

expression . WorkbookAddinUninstall( Wb )

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Wb Required Workbook The uninstalled workbook.

Return Value

Nothing

Example

This example minimizes the Microsoft Excel window when a workbook is installed as an add-in.

Private Sub App_WorkbookAddinUninstall(ByVal Wb As Workbook) 
 Application.WindowState = xlMinimized 
End Sub

See also

Concepts

Application Object

Other resources

Application Object Members