AddIn.Installed Property 

Returns or sets a value indicating True if the specified add-in is installed (loaded).

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim addIn1 As AddIn

Dim returnValue As Boolean
returnValue = addIn1.Installed

Dim sampleValue As Boolean
addIn1.Installed = sampleValue

Syntax

Property Installed() As Boolean
bool Installed {get; set;}
property Boolean Installed{
    Boolean get();
    Void set(Boolean);
}
public boolean get_Installed();
public void set_Installed(boolean);
function get Installed() : Boolean;
function set Installed(Boolean);

Remarks

Add-ins that are loaded are selected in the Templates and Add-ins dialog box (Tools menu).

Uninstalled add-ins are included in the AddIns collection. To remove a template or WLL from the AddIns collection, apply the Delete method to the AddIn object (the add-in name is removed from the Templates and Add-ins dialog box). To unload all templates and WLLs, apply the Unload method to the AddIns collection.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

AddIn Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

AddIn Members