Proprietà ToolBoxItems.SelectedItem
Restituisce l'elemento correntemente selezionato nella scheda della Casella degli strumenti, se presente.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property SelectedItem As ToolBoxItem
Get
ToolBoxItem SelectedItem { get; }
property ToolBoxItem^ SelectedItem {
ToolBoxItem^ get ();
}
abstract SelectedItem : ToolBoxItem
function get SelectedItem () : ToolBoxItem
Valore proprietà
Tipo: EnvDTE.ToolBoxItem
Un oggetto ToolBoxItem.
Note
Se non esiste o non è selezionato alcun elemento nella scheda Casella degli strumenti, la proprietà SelectedItem restituisce Nothing.
Esempi
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");
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.