ToolBoxTab.ToolBoxItems-Eigenschaft
Ruft die Auflistung der ToolBoxItems ab, die einer ToolBoxTab zugeordnet sind.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property ToolBoxItems As ToolBoxItems
ToolBoxItems ToolBoxItems { get; }
property ToolBoxItems^ ToolBoxItems {
ToolBoxItems^ get ();
}
abstract ToolBoxItems : ToolBoxItems with get
function get ToolBoxItems () : ToolBoxItems
Eigenschaftswert
Typ: EnvDTE.ToolBoxItems
Eine ToolBoxItems-Auflistung.
Hinweise
Eine ToolBoxTab kann ein oder mehrere ToolBoxItem-Objekte enthalten.
Beispiele
Sub ToolBoxAddExample()
' 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
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.