Interfaccia AddIns
Aggiornamento: novembre 2007
Contiene tutti i componenti aggiuntivi elencati nella finestra di dialogo Gestione componenti aggiuntivi se questi sono DTE.AddIns oppure tutti i componenti caricati con una particolare soluzione se questi sono ProjectSolution.AddIns.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
<GuidAttribute("50590801-D13E-4404-80C2-5CA30A4D0EE8")> _
Public Interface AddIns _
Implements IEnumerable
Dim instance As AddIns
[GuidAttribute("50590801-D13E-4404-80C2-5CA30A4D0EE8")]
public interface AddIns : IEnumerable
[GuidAttribute(L"50590801-D13E-4404-80C2-5CA30A4D0EE8")]
public interface class AddIns : IEnumerable
public interface AddIns extends IEnumerable
Note
Un oggetto AddIn fornisce ad altri componenti aggiuntivi le informazioni relative ad uno specifico componente aggiuntivo. Solo i componenti aggiuntivi registrati possono essere rappresentati da un oggetto AddIn.
L'interfaccia IDTExtensibility2 contiene il metodo OnAddInsUpdate utilizzato quando viene aggiornato l'insieme AddIns, a meno che il componente aggiuntivo non sia relativo a una soluzione.
Esempi
Sub AddInsExample()
' For this example to work correctly, there should be an add-in
' available in the Visual Studio environment.
' Set object references.
Dim addincoll As AddIns
Dim addinobj As AddIn
' Register an add-in, check DTE add-in count before and after the
' update.
addincoll = DTE.AddIns
MsgBox("AddIns collection parent name: " & addincoll.Parent.Name)
MsgBox("Number of Add-ins: " & addincoll.Count)
' NOTE: Use regsvr32 for Visual C++, regasm for Visual Basic
' and Visual C#. Also, the pathname used below is an example only.
Shell("regasm F:\AddIns\RegExplore\Debug\regexplore.dll")
addincoll.Update()
MsgBox("Number of Add-ins: " & addincoll.Count)
addinobj = addincoll.Item(1)
End Sub