Compartir a través de


SelectedItems.SelectionContainer (Propiedad)

Obtiene un objeto SelectionContainer que representa al diseñador que hospeda el elemento o elementos seleccionados.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
ReadOnly Property SelectionContainer As SelectionContainer
    Get
SelectionContainer SelectionContainer { get; }
property SelectionContainer^ SelectionContainer {
    SelectionContainer^ get ();
}
abstract SelectionContainer : SelectionContainer
function get SelectionContainer () : SelectionContainer

Valor de propiedad

Tipo: EnvDTE.SelectionContainer
Un objeto SelectionContainer.

Comentarios

SelectionContainer devuelve una colección de objetos con un índice de granularidad mayor que el de Project o ProjectItem.

Ejemplos

Sub SelectionContainerExample()
   Dim SelContain As SelectionContainer
   Dim ContainerItem As SelectedItem

   ' Set references to the selection container and its selected item.
   SelContain = DTE.SelectedItems.SelectionContainer
   ContainerItem = DTE.SelectedItems.Item(1)

   ' Print the name of the container of the selected item.
   MsgBox(ContainerItem.Name)
End Sub

Seguridad de .NET Framework

Vea también

Referencia

SelectedItems Interfaz

EnvDTE (Espacio de nombres)