다음을 통해 공유


ToolBoxTab2.ToolBoxItems 속성

ToolBoxTab과 연결된 ToolBoxItems의 컬렉션을 가져옵니다.

네임스페이스:  EnvDTE80
어셈블리:  EnvDTE80(EnvDTE80.dll)

구문

‘선언
ReadOnly Property ToolBoxItems As ToolBoxItems
ToolBoxItems ToolBoxItems { get; }
property ToolBoxItems^ ToolBoxItems {
    ToolBoxItems^ get ();
}
abstract ToolBoxItems : ToolBoxItems with get
function get ToolBoxItems () : ToolBoxItems

속성 값

형식: ToolBoxItems
ToolBoxItems 컬렉션입니다.

설명

ToolBoxTab에는 하나 이상의 ToolBoxItem 개체가 포함될 수 있습니다.

예제

Sub ToolBoxAddExample()
    ' This adds a Text item to the first tab of 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

    ' Add a new Text item to the first tab in the Toolbox.
    tbxTabs.Item(1).ToolBoxItems.Add("New Text Item", "Some text to _
    add to the document.", vsToolBoxItemFormat.vsToolBoxItemFormatText)
End Sub

.NET Framework 보안

참고 항목

참조

ToolBoxTab2 인터페이스

EnvDTE80 네임스페이스