ToolBox.ActiveTab-Eigenschaft
Ruft das momentan in der ToolBox ausgewählte Element ab.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property ActiveTab As ToolBoxTab
ToolBoxTab ActiveTab { get; }
property ToolBoxTab^ ActiveTab {
ToolBoxTab^ get ();
}
abstract ActiveTab : ToolBoxTab with get
function get ActiveTab () : ToolBoxTab
Eigenschaftswert
Typ: EnvDTE.ToolBoxTab
Ein ToolBoxTab-Objekt.
Beispiele
Sub ActiveTabExample()
' This activates a specific tab in the Toolbox.
' Define the variables and create an object reference to the IDE's
' ToolBox object.
Dim win As Window = DTE.Windows.Item(Constants.vsWindowKindToolbox)
Dim tlBox As ToolBox = win.Object
Dim tbxTabs As ToolBoxTabs
' Create an object reference to the ToolBoxTabs object.
tbxTabs = tlBox.ToolBoxTabs
If tlBox.ActiveTab.Name <> "MyTab" Then
' Activate the second tab in the Toolbox.
tbxTabs.Item(2).Activate()
End If
End Sub
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.