Číst v angličtině

Sdílet prostřednictvím


Language.DTE Property

Definition

Gets the top-level extensibility object.

public:
 property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };

Property Value

DTE

A DTE object.

Attributes

Examples

The following example demonstrates how to use the DTE property.

public static void DTE(DTE 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 Test");  
    owp.Activate();  

    EnvDTE.Language language = dte.Debugger.Languages.Item(1);  
    owp.OutputString("Number of items in the language collection is " +   
                     language.Collection.Count + ": ");  
    foreach(EnvDTE.Language lang in language.Collection)  
        owp.OutputString(lang.Name + "  ");  
    owp.OutputString("\nEdition of the environment: " + language.DTE.Edition);  
    owp.OutputString("\nThe name of the current program: " +   
                     language.Parent.CurrentProgram.Name);  
}  

Applies to