Propriedade ToolBox.ActiveTab
Obtém o item atualmente selecionado na caixa de ferramentas.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
ReadOnly Property ActiveTab As ToolBoxTab
ToolBoxTab ActiveTab { get; }
property ToolBoxTab^ ActiveTab {
ToolBoxTab^ get ();
}
abstract ActiveTab : ToolBoxTab with get
function get ActiveTab () : ToolBoxTab
Valor de propriedade
Tipo: EnvDTE.ToolBoxTab
A ToolBoxTab object.
Exemplos
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
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.