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

أمثلة

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

راجع أيضًَا

المرجع

ToolBoxTabs الأعضاء

EnvDTE مساحة الاسم