AddIns Property

Applies To

Application object, Global object.

Description

Returns an AddIns collection that represents all available add-ins, regardless of whether they're currently loaded. The AddIns collection includes the global templates and Word add-in libraries (WLLs) listed in the Templates and Add-ins dialog box (Tools menu). Read-only.

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