AddIns Property Example

This example returns the total number of add-ins.

myCount = AddIns.Count

This example displays the name of each add-in in the Addins collection.

For Each aAddIn In AddIns
    MsgBox aAddIn.Name
Next aAddIn