Debugger3.DTE Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'objet d'extensibilité de niveau supérieur.
public:
property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
public:
property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
[System.Runtime.InteropServices.DispId(200)]
public EnvDTE.DTE DTE { [System.Runtime.InteropServices.DispId(200)] get; }
[<System.Runtime.InteropServices.DispId(200)>]
[<get: System.Runtime.InteropServices.DispId(200)>]
member this.DTE : EnvDTE.DTE
Public ReadOnly Property DTE As DTE
Valeur de propriété
Objet DTE.
Implémente
- Attributs
Exemples
L'exemple suivant indique comment utiliser la propriété DTE.
public static void DTE(EnvDTE80.DTE2 dte)
{
// Setup debug Output window.
Window w =
(Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("DTE Property");
owp.Activate();
EnvDTE90.Debugger3 debugger = (EnvDTE90.Debugger3)dte.Debugger;
EnvDTE.DTE DTEProp = debugger.DTE;
owp.OutputString("Edition of the environment: " + DTEProp.Edition);
}
Remarques
Dans Visual Studio , DTE est la racine du modèle Automation, que les autres modèles objet appellent fréquemment « application ».