ToolBoxItems.SelectedItem-Eigenschaft
Ruft das Element ab, das momentan auf der Registerkarte der ToolBox ausgewählt ist, sofern vorhanden.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property SelectedItem As ToolBoxItem
ToolBoxItem SelectedItem { get; }
property ToolBoxItem^ SelectedItem {
ToolBoxItem^ get ();
}
abstract SelectedItem : ToolBoxItem with get
function get SelectedItem () : ToolBoxItem
Eigenschaftswert
Typ: EnvDTE.ToolBoxItem
Ein ToolBoxItem-Objekt.
Hinweise
Wenn kein Element auf der ToolBox-Registerkarte vorhanden ist oder kein Element ausgewählt wurde, wird durch SelectedItem der Wert Nothing zurückgegeben.
Beispiele
Sub SelectedItemExample(ByVal dte As DTE2)
' Before running this example, select an item in the
' ToolBox window.
Dim tab As ToolBoxTab = dte.ToolWindows.ToolBox.ActiveTab
Dim item As ToolBoxItem = tab.ToolBoxItems.SelectedItem
If IsNothing(tab) = False Then
MsgBox("The selected toolbox item is " & item.Name)
Else
MsgBox("No toolbox item is selected")
End If
End Sub
public void SelectedItemExample(DTE2 dte)
{
// Before running this example, select an item in the
// ToolBox window.
ToolBoxTab tab = dte.ToolWindows.ToolBox.ActiveTab;
ToolBoxItem item = tab.ToolBoxItems.SelectedItem;
if (tab != null)
MessageBox.Show("The selected toolbox item is " + item.Name);
else
MessageBox.Show("No toolbox item is selected");
}
.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.