ToolBoxTabs.Add 메서드
ToolBox에 새 탭을 만들어 ToolBoxTabs 컬렉션에 추가합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
Function Add ( _
Name As String _
) As ToolBoxTab
ToolBoxTab Add(
string Name
)
ToolBoxTab^ Add(
[InAttribute] String^ Name
)
abstract Add :
Name:string -> ToolBoxTab
function Add(
Name : String
) : ToolBoxTab
매개 변수
- Name
형식: System.String
필수적 요소로서,탭의 이름입니다.
반환 값
형식: EnvDTE.ToolBoxTab
ToolBoxTab 개체입니다.
예제
Sub ToolBoxAddExample()
' This adds a tab to 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 tab to the Toolbox.
tbxTabs.Add("MyTab")
End Sub
' The following example demonstrates how to add a .NET component to the
' Toolbox by using a path to the file. The component to be added must
' be a .NET control, such as a Visual Basic Windows Control Library
' component.
Sub ToolBoxItemAddExample2()
Try
Dim tlBox As ToolBox
tlBox = CType(DTE.Windows.Item(Constants. _
vsWindowKindToolbox).Object, EnvDTE.ToolBox)
' Create a new tab called "My Controls."
Dim tlBoxTab As ToolBoxTab = tlBox.ToolBoxTabs. _
Add("My Controls")
' Set focus to the new Toolbox tab.
tlBoxTab.Activate()
' Add a .NET control as a new control in the new Toolbox tab. The
' constant "vsToolBoxItemFormatDotNETComponent" alerts the Toolbox
' to the type of control you are adding.
tlBoxTab.ToolBoxItems.Add("MyDotNetControl", _
"C:\Libraries\ADotNetControl.dll(", _
vsToolBoxItemFormat.vsToolBoxItemFormatDotNETComponent)
Catch ex As System.Exception
' Display any errors that occur.
MsgBox("ERROR: " & ex.Message)
End Try
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.