IVsUIHierarchyWindow Interface
Implemented by the environment to display the hierarchies that VSPackages write.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("A2DD88C9-D878-4323-95A3-77DAF258E5D0")> _
<InterfaceTypeAttribute()> _
Public Interface IVsUIHierarchyWindow
[GuidAttribute("A2DD88C9-D878-4323-95A3-77DAF258E5D0")]
[InterfaceTypeAttribute()]
public interface IVsUIHierarchyWindow
[GuidAttribute(L"A2DD88C9-D878-4323-95A3-77DAF258E5D0")]
[InterfaceTypeAttribute()]
public interface class IVsUIHierarchyWindow
[<GuidAttribute("A2DD88C9-D878-4323-95A3-77DAF258E5D0")>]
[<InterfaceTypeAttribute()>]
type IVsUIHierarchyWindow = interface end
public interface IVsUIHierarchyWindow
The IVsUIHierarchyWindow type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddUIHierarchy | Adds an additional root UI hierarchy node to the list managed by the UI hierarchy window. | |
ExpandItem | Controls the state or appearance of items in the hierarchy. | |
FindCommonSelectedHierarchy | Finds the lowermost hierarchy that is the nearest ancestor to every selected node. | |
GetCurrentSelection | Gets the alternate itemID of the current selection when an alternate UIHierarchy is used. | |
GetItemState | Returns the state or appearance of the hierarchy. | |
Init | Initializes a custom use of a UI hierarchy window. | |
RemoveUIHierarchy | Removes a root UI hierarchy node from the UI hierarchy window. | |
SetCursor | This method is obsolete. Calling it has no effect. | |
SetWindowHelpTopic | Sets the Help topic for the hierarchy window. |
Top
Remarks
This interface is implemented by the environment to display the hierarchies that are written by VSPackages for the existing hierarchy windows (Solutions Explorer, Macro Explorer, and Server Explorer). Using this interface, VSPackages call into the UI Hierarchy window to add, remove, expand, or select hierarchies in the window.
This interface can also be implemented on a custom UIHierarchy window. To instantiate your own UIHierarchy window, call QueryService on the SVsUIShell Service to get a pointer to the IVsUIShell interface. Once you have the pointer to this interface, call CreateToolWindow (CLASSID_VSUIHierarchyWindow). You can use the returned ppWindowFrame to get the ppunkDocView, on which QueryInterface can be called for a pointer to the IVsUIHierarchyWindow interface.
Tool tips in a UIHierarchy window are reserved to show the full caption of the node if the caption is being clipped by the current view (i.e. the window is too narrow to show the full caption). You can not provide custom tool tips for UIHierarchy windows.
See illustrations of the implementation and/or calling of this interface in the sample Basic Project.
Notes to Implementers
Implemented by the environment on the existing hierarchy windows (Solution Explorer, Macro Explorer, and Server Explorer).