AddIn.Compiled property (Word)

True if the specified add-in is a Word add-in library (WLL). False if the add-in is a template. Read-only Boolean.

Syntax

expression. Compiled

expression A variable that represents a 'AddIn' object.

Example

This example determines how many WLLs are currently loaded.

count = 0 
For Each aAddin in Addins 
 If aAddin.Compiled = True And aAddin.Installed = True Then 
 count = count + 1 
 End If 
Next aAddin 
MsgBox Str(count) & " WLL's are loaded"

If the first add-in is a template, this example unloads the template and opens it.

If Addins(1).Compiled = False Then 
 Addins(1).Installed = False 
 Documents.Open FileName:=AddIns(1).Path _ 
 & Application.PathSeparator _ 
 & AddIns(1).Name 
End If

See also

AddIn Object

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.