IVsToolbox2::AddItem Method (IDataObject^, array<TBXITEMINFO>^, String^)

 

Adds a data object to the specified tab in the Toolbox.

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

int AddItem(
	IDataObject^ pDO,
	array<TBXITEMINFO>^ ptif,
	String^ lpszTab
)

Parameters

pDO
Type: Microsoft.VisualStudio.OLE.Interop::IDataObject^

[in] IDataObject to be added to the References tab in the Toolbox.

ptif
Type: array<Microsoft.VisualStudio.Shell.Interop::TBXITEMINFO>^

[in] Structure identifying item characteristics, such as the item name and icon. For more information, see TBXITEMINFO.

lpszTab
Type: System::String^

[in] The localized name of the Toolbox tab to add the data object to. The localized name can be obtained from the invariant non-localized name by calling GetIDOfTab.

Return Value

Type: System::Int32

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

From vsshell.idl:

HRESULT IVsToolbox2::AddItem(
   [in]IDataObject* pDO,
   [in]PTBXITEMINFO ptif,
   [in]LPCOLESTR lpszTab
);
Return to top
Show: