ToolBoxTab3.DTE Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the top-level extensibility object.
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
Property Value
A DTE object.
Implements
- Attributes
Examples
This example displays the caption of the active window, obtained through the DTE object.
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Sub ToolBoxTabDTEExample(ByVal dte As DTE2)
Dim tlBox As ToolBox
Dim tbxTabs As ToolBoxTabs
Dim tbxTab As ToolBoxTab3
' 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 EnvDTE90;
using System.Windows.Forms;
public void ToolBoxTabDTEExample (DTE2 dte)
{
ToolBox tlBox;
ToolBoxTabs tbxTabs;
ToolBoxTab3 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);
}
}
Remarks
In Visual Studio, the DTE object is the root of the automation model, which other object models often call "Application".