ToolBoxItem インターフェイス
更新 : 2007 年 11 月
ツールボックスにあるアイテムを表します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
<GuidAttribute("46538D1B-4D81-4002-8BB4-DBDB65BABB23")> _
Public Interface ToolBoxItem
'使用
Dim instance As ToolBoxItem
[GuidAttribute("46538D1B-4D81-4002-8BB4-DBDB65BABB23")]
public interface ToolBoxItem
[GuidAttribute(L"46538D1B-4D81-4002-8BB4-DBDB65BABB23")]
public interface class ToolBoxItem
public interface ToolBoxItem
解説
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