Proprietà DTE2.AddIns
Ottiene la raccolta AddIns contenente tutti i componenti aggiuntivi disponibili.
Spazio dei nomi: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Sintassi
'Dichiarazione
ReadOnly Property AddIns As AddIns
AddIns AddIns { get; }
property AddIns^ AddIns {
AddIns^ get ();
}
abstract AddIns : AddIns with get
function get AddIns () : AddIns
Valore proprietà
Tipo: AddIns
Raccolta AddIns.
Note
I componenti aggiuntivi restituiti non sono presenti nella raccolta AddIns a meno che non siano stati appositamente registrati.
Esempi
Sub AddInsExample(ByVal dte As DTE2)
' Display all add-ins.
Dim addIn As AddIn
Dim msg As String = "Available add-ins:" & vbCrLf & vbCrLf
For Each addIn In dte.AddIns
msg &= " " & addIn.Name
If addIn.Connected Then
msg &= " (Loaded)" & vbCrLf
Else
msg &= " (Not Loaded)" & vbCrLf
End If
Next
MsgBox(msg)
End Sub
public void AddInsExample(DTE2 dte)
{
// Display all add-ins.
string msg = "Available add-ins:\n\n";
foreach (AddIn addIn in dte.AddIns)
{
msg += " " + addIn.Name;
if (addIn.Connected)
msg += " (Loaded)\n";
else
msg += " (Not Loaded)\n";
}
MessageBox.Show(msg);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione