Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.13 KB

Excel.Application.AddIns.md

File metadata and controls

47 lines (28 loc) · 1.13 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.AddIns property (Excel)
vbaxl10.chm132081
vbaxl10.chm132081
Excel.Application.AddIns
0798690a-910a-b832-e143-df51d7c061ca
04/04/2019
medium

Application.AddIns property (Excel)

Returns an AddIns collection that represents all the add-ins listed in the Add-Ins dialog box (Add-Ins command on the Developer tab). Read-only.

Syntax

expression.AddIns

expression A variable that represents an Application object.

Remarks

Using this method without an object qualifier is equivalent to Application.Addins.

Example

This example displays the status of the Analysis ToolPak add-in. Note that the string used as the index to the AddIns collection is the title of the add-in, not the add-in's file name.

If AddIns("Analysis ToolPak").Installed = True Then 
 MsgBox "Analysis ToolPak add-in is installed" 
Else 
 MsgBox "Analysis ToolPak add-in is not installed" 
End If

[!includeSupport and feedback]