IVsToolboxUser.ItemPicked Method
Sends notification that an item in the Toolbox is selected through a click, or by pressing ENTER.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ItemPicked ( _
pDO As IDataObject _
) As Integer
int ItemPicked(
IDataObject pDO
)
int ItemPicked(
[InAttribute] IDataObject^ pDO
)
abstract ItemPicked :
pDO:IDataObject -> int
function ItemPicked(
pDO : IDataObject
) : int
Parameters
pDO
Type: Microsoft.VisualStudio.OLE.Interop.IDataObject[in] Data object that is selected.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsToolboxUser::ItemPicked(
[in]IDataObject* pDO
);
This method is called whenever a Toolbox item is added to window by selection, that is by a user double clicking on the item, or single clicking and pressing ENTER, which by-passed the drag-and-drop mechanism.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.