Interface AddIns
Contém Tudo Adicionar-ins no Adicionar - na Gerente de Caixa de Caixa de diálogo se eles tiverem sido DTE.AddIns, ou Tudo o Adicionar-ins carregados por uma solução específica se eles forem ProjectSolution.AddIns.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE. dll)
Sintaxe
<GuidAttribute("50590801-D13E-4404-80C2-5CA30A4D0EE8")> _
Public Interface AddIns _
Inherits 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
Comentários
Um objeto AddIn fornece informações sobre um Adicionar-in para outros suplementos.Somente registrado Adicionar-ins pode ser representado por um objeto AddIn.
A interface de IDTExtensibility2 contém o método OnAddInsUpdate que ocorre quando a coleção AddIns é atualizada, a menos que o suplemento seja um Adicionar-in da solução.
Exemplos
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