Application.WorkbookAddinInstall event (Excel)
Occurs when a workbook is installed as an add-in.
expression.WorkbookAddinInstall (Wb)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wb | Required | Workbook | The installed workbook. |
Nothing
For information about how to use event procedures with the Application object, see Using events with the Application object.
This example maximizes the Microsoft Excel window when a workbook is installed as an add-in.
Private Sub App_WorkbookAddinInstall(ByVal Wb As Workbook)
Application.WindowState = xlMaximized
End Sub
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.