Właściwość SelectedItems.SelectionContainer —
Pobiera SelectionContainer obiekt, który reprezentuje projektanta hostingu zaznaczone elementy.
Przestrzeń nazw: EnvDTE
Zestaw: EnvDTE (w EnvDTE.dll)
Składnia
'Deklaracja
ReadOnly Property SelectionContainer As SelectionContainer
SelectionContainer SelectionContainer { get; }
property SelectionContainer^ SelectionContainer {
SelectionContainer^ get ();
}
abstract SelectionContainer : SelectionContainer with get
function get SelectionContainer () : SelectionContainer
Wartość właściwości
Typ: EnvDTE.SelectionContainer
A SelectionContainer object.
Uwagi
SelectionContainerZwraca kolekcję obiektów na bardziej szczegółowy niż Project lub ProjectItem.
Przykłady
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
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.