共用方式為


SelectedItems.SelectionContainer 屬性

取得代表裝載選取項目程式設計工具的 SelectionContainer 物件。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property SelectionContainer As SelectionContainer
SelectionContainer SelectionContainer { get; }
property SelectionContainer^ SelectionContainer {
    SelectionContainer^ get ();
}
abstract SelectionContainer : SelectionContainer
function get SelectionContainer () : SelectionContainer

屬性值

型別:EnvDTE.SelectionContainer
SelectionContainer 物件。

備註

ProjectProjectItem 相比,SelectionContainer 會傳回更細微的物件的集合。

範例

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

.NET Framework 安全性

請參閱

參考

SelectedItems 介面

EnvDTE 命名空間