_DTE.SelectedItems Property

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

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property SelectedItems As SelectedItems
'Usage
Dim instance As _DTE 
Dim value As SelectedItems 

value = instance.SelectedItems
SelectedItems SelectedItems { get; }
property SelectedItems^ SelectedItems {
    SelectedItems^ get ();
}
function get SelectedItems () : SelectedItems

Property Value

Type: EnvDTE.SelectedItems
A SelectedItems collection.

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
public void SelectedItemsExample(DTE2 dte)
{
    // Before running this example, open a project and select some 
    // items in Solution Explorer.

    string msg = "";

    foreach (SelectedItem item in dte.SelectedItems)
        msg += item.Name + "\n";

    MessageBox.Show(
        "The following items are selected in Solution Explorer:\n\n" + 
        msg);
}

.NET Framework Security

See Also

Reference

_DTE Interface

_DTE Members

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples