ToolBoxTab2.DTE Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o objeto de extensibilidade de nível superior.
public:
property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
public:
property EnvDTE::DTE ^ DTE { EnvDTE::DTE ^ get(); };
[System.Runtime.InteropServices.DispId(2)]
public EnvDTE.DTE DTE { [System.Runtime.InteropServices.DispId(2)] get; }
[<System.Runtime.InteropServices.DispId(2)>]
[<get: System.Runtime.InteropServices.DispId(2)>]
member this.DTE : EnvDTE.DTE
Public ReadOnly Property DTE As DTE
Valor da propriedade
Um objeto DTE.
Implementações
- Atributos
Exemplos
Este exemplo exibe a legenda da janela ativa, obtida por meio do ToolBoxTab2.DTE objeto.
Imports EnvDTE
Imports EnvDTE80
Sub ToolBoxTabDTEExample(ByVal dte As DTE2)
Dim tlBox As ToolBox
Dim tbxTabs As ToolBoxTabs
Dim tbxTab As ToolBoxTab2
' Dim tbxItem As ToolBoxItem
Try
' Create an object reference to the IDE's ToolBox object and
' its tabs.
tlBox = CType(_applicationObject.Windows.Item _
(Constants.vsWindowKindToolbox).Object, ToolBox)
tbxTabs = tlBox.ToolBoxTabs
' Select the first Toolbox tab.
tbxTab = CType(tbxTabs.Item(1), ToolBoxTab2)
MsgBox(tbxTab.Name)
tbxTab.Activate()
MsgBox("The caption of the active window, obtained through _
the DTE object, is: " & vbCr & tbxTab.DTE.ActiveWindow.Caption)
Catch ex As System.Exception
MsgBox("ERROR: " & ex.Message)
End Try
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void ToolBoxTabDTEExample (DTE2 dte)
{
ToolBox tlBox;
ToolBoxTabs tbxTabs;
ToolBoxTab2 tbxTab;
try
{
// Create an object reference to the IDE's ToolBox object and
// its tabs.
tlBox = (ToolBox)_applicationObject.Windows.Item
(Constants.vsWindowKindToolbox).Object;
tbxTabs = tlBox.ToolBoxTabs;
// Select the first Toolbox tab.
tbxTab = (ToolBoxTab2)tbxTabs.Item(1);
MessageBox.Show("The name of the selected toolbox tab is: "
+ tbxTab.Name);
tbxTab.Activate();
MessageBox.Show("The caption of the active window,
obtained through the DTE object, is: " + "\n"
+ tbxTab.DTE.ActiveWindow.Caption);
}
catch (Exception ex)
{
MessageBox.Show("ERROR: " + ex.Message);
}
}
Comentários
No Visual Studio , o DTE objeto é a raiz do modelo de automação, que outros modelos de objeto geralmente chamam de "Application".