ToolBoxTab3.DTE Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft das Erweiterbarkeitsobjekt der obersten Ebene ab.
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
Eigenschaftswert
Ein DTE-Objekt.
Implementiert
- Attribute
Beispiele
In diesem Beispiel wird die Beschriftung des aktiven Fensters angezeigt, das über das-Objekt abgerufen wird DTE .
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);
}
}
Hinweise
In Visual Studio ist das- DTE Objekt der Stamm des Automatisierungs Modells, das von anderen Objekt Modellen oft als "Application" bezeichnet wird.