IVsObjectManager2::CreateCombinedBrowseComponentSet Method (IVsCombinedBrowseComponentSet^)
Visual Studio 2015
Creates an empty component set which cam be manually populated with the components from simple sets and removes duplicate components. The component set can be used by a library to present project references in the Object Browser.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int CreateCombinedBrowseComponentSet(
[OutAttribute] IVsCombinedBrowseComponentSet^% ppCombinedSet
)
Parameters
- ppCombinedSet
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsCombinedBrowseComponentSet^
The IVsCombinedBrowseComponentSet represents an empty component set, which can be populated with the symbols used in the Visual Studio symbol browsing tool such as Class View and Object Browser.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT CreateCombinedBrowseComponentSet( [out, retval] IVsCombinedBrowseComponentSet ** ppCombinedSet );
Show: