ToolBoxItem 接口

表示**“工具箱”**中的项。

命名空间:  EnvDTE
程序集:  EnvDTE(在 EnvDTE.dll 中)

语法

声明
<GuidAttribute("46538D1B-4D81-4002-8BB4-DBDB65BABB23")> _
Public Interface ToolBoxItem
[GuidAttribute("46538D1B-4D81-4002-8BB4-DBDB65BABB23")]
public interface ToolBoxItem
[GuidAttribute(L"46538D1B-4D81-4002-8BB4-DBDB65BABB23")]
public interface class ToolBoxItem
[<GuidAttribute("46538D1B-4D81-4002-8BB4-DBDB65BABB23")>]
type ToolBoxItem =  interface end
public interface ToolBoxItem

ToolBoxItem 类型公开以下成员。

属性

  名称 说明
公共属性 Collection 获取包含支持此属性的 ToolBoxItem 对象的集合。
公共属性 DTE 获取顶级扩展性对象。
公共属性 Name 获取或设置 ToolBoxItem 对象的名称。

页首

方法

  名称 说明
公共方法 Delete 从集合中移除 ToolBoxItem 对象。
公共方法 Select 使此项在集成开发环境 (IDE) 中变为活动。

页首

备注

ToolBoxItem 对象可包含控件、文本、HTML 段落或其他对象。

示例

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

请参阅

参考

EnvDTE 命名空间