IVsHierarchyDeleteHandler::DeleteItem Method (UInt32, UInt32)
Visual Studio 2015
Handles the deletion or removal of a hierarchy item.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
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::Int32If 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.
Show: