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