Application.COMAddIns property (Outlook)

Returns a COMAddIns collection that represents all the Component Object Model (COM) add-ins currently loaded in Microsoft Outlook.

Syntax

expression.COMAddIns

expression A variable that represents an Application object.

Example

This Microsoft Visual Basic for Applications (VBA) example displays the number of COM add-ins currently loaded.

Private Sub CountCOMAddins() 
 
 MsgBox "There are " & _ 
 
 Application.COMAddIns.Count & " COM add-ins." 
 
End Sub

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.