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