Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 859 Bytes

Excel.Application.COMAddIns.md

File metadata and controls

39 lines (24 loc) · 859 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.COMAddIns property (Excel)
vbaxl10.chm133246
vbaxl10.chm133246
Excel.Application.COMAddIns
d51f3373-ba5d-20b4-7557-246a6fcf89c3
04/04/2019
medium

Application.COMAddIns property (Excel)

Returns the COMAddIns collection for Microsoft Excel, which represents the currently installed COM add-ins. Read-only.

Syntax

expression.COMAddIns

expression A variable that represents an Application object.

Example

This example displays the number of COM add-ins that are currently installed.

Set objAI = Application.COMAddIns 
MsgBox "Number of COM add-ins available:" & _ 
    objAI.Count

[!includeSupport and feedback]