Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.07 KB

Excel.AddIn.Installed.md

File metadata and controls

47 lines (29 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
AddIn.Installed property (Excel)
vbaxl10.chm185076
vbaxl10.chm185076
Excel.AddIn.Installed
f8e6e45a-9f6c-2156-dd6f-d3f8e221c282
04/03/2019
medium

AddIn.Installed property (Excel)

True if the add-in is installed or to install the add-in; False if the add-in is uninstalled or to uninstall the add-in. Read/write Boolean.

Syntax

expression.Installed

expression A variable that represents an AddIn object.

Remarks

Setting this property to True installs the add-in and calls its Auto_Add functions. Setting this property to False removes the add-in and calls its Auto_Remove functions.

Example

This example uses a message box to display the installation status of the Solver add-in.

Set a = AddIns("Solver Add-In") 
If a.Installed = True Then 
 MsgBox "The Solver add-in is installed" 
Else 
 MsgBox "The Solver add-in is not installed" 
End If

[!includeSupport and feedback]