ToolBoxItem Interface
Visual Studio 2015
Represents an item in the ToolBox.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | Collection | Gets the collection containing the ToolBoxItem object supporting this property. |
![]() | DTE | Gets the top-level extensibility object. |
![]() | Name | Gets or sets the name of the ToolBoxItem object. |
A ToolBoxItem object can contain controls, text, HTML fragments, or other objects.
Sub ToolBoxItemExample() Dim tlBox As ToolBox Dim tbxTabs As ToolBoxTabs Dim tbxTab As ToolBoxTab Dim tbxItem As ToolBoxItem Try ' Create an object reference to the IDE's ToolBox object and ' its tabs. tlBox = DTE.Windows.Item(Constants.vsWindowKindToolbox).Object tbxTabs = tlBox.ToolBoxTabs ' Select the first ToolBox tab. tbxTab = tbxTabs.Item(1) tbxTab.Activate() tbxItem = tbxTab.ToolBoxItems.Item(4) MsgBox("ToolBox item name: " & tbxItem.Name) Catch ex As System.Exception MsgBox("ERROR: " & ex.Message) End Try End Sub
Show:

