AddIns Property
Applies To
Application object.
Description
Returns an AddIns collection that represents all the add-ins listed in the Add-Ins dialog box (Tools menu). Read-only.
Example
This example adds the add-in named "Myaddin.ppa" to the list in the Add-Ins dialog box and installs the add-in automatically.
Set myAddIn = Application.AddIns.Add(FileName:="c:\myaddin.ppa")
MsgBox myAddIn.Name & " has been added to the list"