ToolBox.ActiveTab, propriété
Obtient l'élément actuellement sélectionné dans la Boîte à outils.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property ActiveTab As ToolBoxTab
Get
ToolBoxTab ActiveTab { get; }
property ToolBoxTab^ ActiveTab {
ToolBoxTab^ get ();
}
abstract ActiveTab : ToolBoxTab
function get ActiveTab () : ToolBoxTab
Valeur de propriété
Type : EnvDTE.ToolBoxTab
Objet ToolBoxTab.
Exemples
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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.