Partager via


ToolBoxItems.SelectedItem, propriété

Obtient l'élément actuellement sélectionné sous l'onglet de la boîte à outils, le cas échéant.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
ReadOnly Property SelectedItem As ToolBoxItem
ToolBoxItem SelectedItem { get; }
property ToolBoxItem^ SelectedItem {
    ToolBoxItem^ get ();
}
abstract SelectedItem : ToolBoxItem with get
function get SelectedItem () : ToolBoxItem

Valeur de propriété

Type : EnvDTE.ToolBoxItem
Objet ToolBoxItem.

Notes

S'il n'existe aucun élément sous l'onglet de la boîte à outils ou si aucun élément n'est sélectionné, SelectedItem retourne Nothing.

Exemples

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");
}

Sécurité .NET Framework

Voir aussi

Référence

ToolBoxItems Interface

EnvDTE, espace de noms

Autres ressources

Comment : contrôler la boîte à outils