Syntax

expression.AddIns

expression A variable that represents an Application object.

Remarks

Using this method without an object qualifier is equivalent to Application.Addins.

Example

This example displays the status of the Analysis ToolPak add-in. Note that the string used as the index to the AddIns collection is the title of the add-in, not the add-in's file name.

Visual Basic for Applications
If AddIns("Analysis ToolPak").Installed = True Then MsgBox "Analysis ToolPak add-in is installed" Else MsgBox "Analysis ToolPak add-in is not installed" End If
Access a list of all addins? add add ins Add Ins Property addins addins property Return the collection of all addins listed in the addins dialog box?

See also: