Application.WorkbookAddinInstall Event

Excel Developer Reference

Occurs when a workbook is installed as an add-in.

Syntax

expression.WorkbookAddinInstall(Wb)

expression   A variable that represents an Application object.

Parameters

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

Return Value
Nothing

Example

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

Visual Basic for Applications
  Private Sub App_WorkbookAddinInstall(ByVal Wb As Workbook)
    Application.WindowState = xlMaximized
End Sub

See Also