Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.24 KB

Excel.Application.WorkbookAddinInstall.md

File metadata and controls

54 lines (32 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.WorkbookAddinInstall event (Excel)
vbaxl10.chm504088
vbaxl10.chm504088
Excel.Application.WorkbookAddinInstall
955c8f2a-4647-ed7e-29f9-8d6d165898ec
04/05/2019
medium

Application.WorkbookAddinInstall event (Excel)

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

Remarks

For information about how to use event procedures with the Application object, see Using events with the Application object.

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

[!includeSupport and feedback]