Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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