ToolBox, interface
Représente la Boîte à outils dans l'environnement de développement intégré (IDE, Integrated Development Environment).
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
<GuidAttribute("56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")> _
Public Interface ToolBox
[GuidAttribute("56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")]
public interface ToolBox
[GuidAttribute(L"56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")]
public interface class ToolBox
[<GuidAttribute("56FCD5AF-7F17-4C5C-AA8D-AE2BB2DDBF38")>]
type ToolBox = interface end
public interface ToolBox
Le type ToolBox expose les membres suivants.
Propriétés
Nom | Description | |
---|---|---|
ActiveTab | Obtient l'élément actuellement sélectionné dans la Boîte à outils. | |
DTE | Obtient l'objet d'extensibilité de niveau supérieur. | |
Parent | Obtient l'objet parent immédiat d'un objet ToolBox. | |
ToolBoxTabs | Obtient la collection de tous les onglets de la Boîte à outils. |
Début
Notes
Un objet Window représente la fenêtre Boîte à outils. ToolBox contient une collection d'objets ToolBoxTab, tels que des contrôles. Les éléments individuels dans les onglets Boîte à outils sont représentés par les objets ToolBoxItem.
Un onglet spécial, appelé Presse-papiers, contient les 15 derniers éléments coupés ou copiés vers le Presse-papiers.
Il n'y a qu'un seul objet ToolBox dans l'environnement de développement intégré.
Exemples
Sub ToolboxExample()
' 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