Share via


_DTE.SelectedItems Property

Definition

Gets a collection containing the items currently selected in the environment.

public:
 property EnvDTE::SelectedItems ^ SelectedItems { EnvDTE::SelectedItems ^ get(); };

Property Value

A SelectedItems collection.

Attributes

Examples

Sub SelectedItemsExample(ByVal dte As DTE2)  

    ' Before running this example, open a project and select some items   
    ' in Solution Explorer.  

    Dim item As SelectedItem  
    Dim msg As String  

    For Each item In dte.SelectedItems  
        msg &= item.Name & vbCrLf  
    Next  

    MsgBox("The following items are selected in Solution Explorer:" & _  
        vbCrLf & vbCrLf & msg)  

End Sub  

Applies to