ToolBox.ToolBoxTabs, propriété
Obtient la collection de tous les onglets de la Boîte à outils.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property ToolBoxTabs As ToolBoxTabs
ToolBoxTabs ToolBoxTabs { get; }
property ToolBoxTabs^ ToolBoxTabs {
ToolBoxTabs^ get ();
}
abstract ToolBoxTabs : ToolBoxTabs with get
function get ToolBoxTabs () : ToolBoxTabs
Valeur de propriété
Type : EnvDTE.ToolBoxTabs
Collection ToolBoxTabs.
Exemples
Sub ToolBoxTabsExample()
' 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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.