IVsToolboxActiveUserHook::ToolboxSelectionChanged Method (IDataObject^)
Visual Studio 2015
This method is called by the Toolbox whenever there is a change in which Toolbox item has been selected.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Parameters
- pSelected
-
Type:
Microsoft.VisualStudio.OLE.Interop::IDataObject^
[in] An IDataObject containing the currently selected Toolbox item.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
[C++] HRESULT IVsToolboxActiveUserHook::ToolboxSelectionChanged( [in] IDataObject *pSelected );
IVsToolboxActiveUserHook is used by an application that requires notification of changes to a Toolbox selection. It should only be called by the Toolbox itself, as only the active Toolbox user can receive IVsToolboxActiveUserHook notifications. It should not be called directly by a VSPackage.
Show: