Documents.DTE Özellik

Tanım

Üst düzey genişletilebilirlik nesnesini alır.

public:
 property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
public:
 property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
[System.Runtime.InteropServices.DispId(100)]
public EnvDTE.DTE DTE { [System.Runtime.InteropServices.DispId(100)] get; }
[<System.Runtime.InteropServices.DispId(100)>]
[<get: System.Runtime.InteropServices.DispId(100)>]
member this.DTE : EnvDTE.DTE
Public ReadOnly Property DTE As DTE

Özellik Değeri

DTE

Bir DTE nesnesi.

Öznitelikler

Örnekler

Þ

public void CodeExample(DTE2 dte)  
{     
    try  
    {  
        Documents docs;  
        docs = dte.Documents;  
        if (docs.DTE.Equals(dte))  
            MessageBox.Show("These two objects do equal each other.");  
    }  
    catch(Exception ex)  
    {  
        MessageBox.Show(ex.Message);  
    }  
}  

Açıklamalar

Visual Studio 'da nesne, DTE diğer nesne modellerinin genellikle "uygulama" çağrısını yaparken otomasyon modelinin köküdür.

Şunlara uygulanır