Proprietà ToolBoxItems.SelectedItem
Ottiene l'elemento attualmente selezionato nella scheda di Casella degli strumenti, si ne esiste.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property SelectedItem As ToolBoxItem
ToolBoxItem SelectedItem { get; }
property ToolBoxItem^ SelectedItem {
ToolBoxItem^ get ();
}
abstract SelectedItem : ToolBoxItem
function get SelectedItem () : ToolBoxItem
Valore proprietà
Tipo: EnvDTE.ToolBoxItem
In ToolBoxItem oggetto.
Note
Se non sono presenti elementi in Casella degli strumenti quindi passare o se non viene selezionato alcun elemento, 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.