Udostępnij za pośrednictwem


Właściwość _DTE.SelectedItems —

Pobiera kolekcja zawierające elementy aktualnie zaznaczone w środowisku.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
ReadOnly Property SelectedItems As SelectedItems
SelectedItems SelectedItems { get; }
property SelectedItems^ SelectedItems {
    SelectedItems^ get ();
}
abstract SelectedItems : SelectedItems with get
function get SelectedItems () : SelectedItems

Wartość właściwości

Typ: EnvDTE.SelectedItems
A SelectedItems kolekcji.

Przykłady

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

_DTE Interfejs

Przestrzeń nazw EnvDTE

Inne zasoby

Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady