Share via


AddIn.Compiled Property

Word Developer Reference

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.

Visual Basic for Applications
  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.

Visual Basic for Applications
  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