IVsToolboxActiveUserHook.ToolboxSelectionChanged Method

This method is called by the Toolbox whenever there is a change in which Toolbox item has been selected.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaration
Function ToolboxSelectionChanged ( _
    pSelected As IDataObject _
) As Integer
int ToolboxSelectionChanged(
    IDataObject pSelected
)
int ToolboxSelectionChanged(
    [InAttribute] IDataObject^ pSelected
)
abstract ToolboxSelectionChanged : 
        pSelected:IDataObject -> int
function ToolboxSelectionChanged(
    pSelected : IDataObject
) : int

Parameters

Return Value

Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

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.

.NET Framework Security

See Also

Reference

IVsToolboxActiveUserHook Interface

Microsoft.VisualStudio.Shell.Interop Namespace