SelectedItems::SelectionContainer Property
Visual Studio 2015
Gets a SelectionContainer object that represents the designer hosting the selected item(s).
Assembly: EnvDTE (in EnvDTE.dll)
SelectionContainer returns a collection of objects at a finer granularity than Project or ProjectItem.
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
Show: