IVsHierarchyDeleteHandler::DeleteItem Method (UInt32, UInt32)

 

Handles the deletion or removal of a hierarchy item.

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

int DeleteItem(
	unsigned int dwDelItemOp,
	unsigned int itemid
)

Parameters

dwDelItemOp
Type: System::UInt32

[in] Determines whether the hierarchy or hierarchy item is deleted from storage or removed from the project. Values are taken from the __VSDELETEITEMOPERATION enumeration.

itemid
Type: System::UInt32

[in] Item identifier of an item in the hierarchy. VSITEMID_ROOT will delete everything in the hierarchy. VSITEMID_SELECTION is not supported.

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 IVsHierarchyDeleteHandler::DeleteItem(
   [in] VSDELETEITEMOPERATION dwDelItemOp,
   [in] VSITEMID itemid
);

Implement this method to delete or remove an item depending on the command option selected by the user.

Return to top
Show: