AddIns.Unload method (Word)
Unloads all loaded add-ins and, depending on the value of the RemoveFromList argument, removes them from the AddIns collection.
Syntax
expression. Unload
( _RemoveFromList_
)
expression An expression that returns an 'AddIns' collection.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
RemoveFromList | Required | Boolean | True to remove the unloaded add-ins from the AddIns collection (the names are removed from the Templates and Add-ins dialog box). False to leave the unloaded add-ins in the collection. If the Autoload property for an unloaded add-in returns True, Unload cannot remove that add-in from the AddIns collection, regardless of the value of RemoveFromList. |
Remarks
To unload a single template or WLL, set the Installed property of the AddIn object to False. To remove a single template or WLL from the AddIns collection, apply the Delete method to the AddIn object.
Example
This example unloads all the add-ins listed in the Templates and Add-ins dialog box. The add-in names remain in the AddIns collection.
If AddIns.Count > 0 Then AddIns.UnLoad RemoveFromList:=False
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.