IVsSimpleLibrary2::RemoveBrowseContainer Method (UInt32, String^)
Visual Studio 2015
Removes a Browse Container being browsed by the library.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Parameters
- dwReserved
-
Type:
System::UInt32
[in] Reserved. Set this parameter to null.
- pszLibName
-
Type:
System::String^
[in] A string containing the library name.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsSimpleLibrary2::RemoveBrowseContainer( [in] DWORD dwReserved, [in] LPCWSTR pszLibName );
Stop browsing the component identified by pszLibName. The pszLibName parameter is equivalent to that returned through the GetText method for this browse container. This method is only meaningful for registered libraries with global browse containers.
Show: