Share via


Application.WorkbookAddinInstall Event (Excel)

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

Syntax

.WorkbookAddinInstall(Wb)

A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

Wb

필수

Workbook

The installed workbook.

Return Value

Nothing

Example

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

참고 항목

개념

Application Object Members

Application Object