Condividi tramite


Proprietà Documents.DTE

Ottiene l'oggetto di estensibilità di primo livello.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
ReadOnly Property DTE As DTE
    Get
DTE DTE { get; }
property DTE^ DTE {
    DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE

Valore proprietà

Tipo: EnvDTE.DTE
Un oggetto DTE.

Note

In Visual Studio l'oggetto DTE si trova alla base del modello di automazione, spesso chiamato "Applicazione" in altri modelli a oggetti.

Esempi

[C#]

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);
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Documents Interfaccia

Spazio dei nomi EnvDTE

Altre risorse

Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione