ToolBoxTabs 인터페이스
도구 상자의 모든 탭을 포함합니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
<GuidAttribute("CF177B52-4F2F-42A0-8DA3-CE78679A0D2D")> _
Public Interface ToolBoxTabs _
Inherits IEnumerable
[GuidAttribute("CF177B52-4F2F-42A0-8DA3-CE78679A0D2D")]
public interface ToolBoxTabs : IEnumerable
[GuidAttribute(L"CF177B52-4F2F-42A0-8DA3-CE78679A0D2D")]
public interface class ToolBoxTabs : IEnumerable
[<GuidAttribute("CF177B52-4F2F-42A0-8DA3-CE78679A0D2D")>]
type ToolBoxTabs =
interface
interface IEnumerable
end
public interface ToolBoxTabs extends IEnumerable
ToolBoxTabs 형식에서는 다음과 같은 멤버를 노출합니다.
속성
이름 | 설명 | |
---|---|---|
Count | 컬렉션에 있는 개체의 수를 나타내는 값을 가져옵니다. | |
DTE | 최상위 확장성 개체를 가져옵니다. | |
Parent | ToolBoxTabs 컬렉션의 바로 위 부모 개체를 가져옵니다. |
위쪽
메서드
이름 | 설명 | |
---|---|---|
Add | ToolBox 에 새 탭을 만들어 ToolBoxTabs 컬렉션에 추가합니다. | |
GetEnumerator | 컬렉션의 항목에 대한 열거자를 가져옵니다. | |
Item | ToolBoxTabs 컬렉션의 인덱싱된 멤버를 반환합니다. |
위쪽
예제
Sub ToolBoxTabsExample()
' 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
' Now you can manipulate the ToolBox.
' List the total number of tabs in the ToolBox.
MsgBox("Number of ToolBox tabs: " & tbxTabs.Count)
End Sub