IVsHierarchyDeleteHandler3::DeleteItems Method (UInt32, UInt32, array<UInt32>^, UInt32)
Visual Studio 2015
Handles the deletion or removal of one or more hierarchy items.
Assembly: Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)
int DeleteItems( unsigned int cItems, unsigned int dwDelItemOp, array<unsigned int>^ itemid, unsigned int dwFlags )
Parameters
- cItems
-
Type:
System::UInt32
[in] The number of items to be deleted or removed.
- dwDelItemOp
-
Type:
System::UInt32
[in] Determines whether the hierarchy or hierarchy items are deleted from storage or removed from the project. Values are taken from the __VSDELETEITEMOPERATION enumeration.
- itemid
-
Type:
array<System::UInt32>^
[in, size_is(cItems)] Array of item identifiers of the items in the hierarchy. VSITEMID_ROOT deletes everything in the hierarchy. VSITEMID_SELECTION is not supported.
- dwFlags
-
Type:
System::UInt32
[in] Provides options for the deletion process. If set to DHO_SUPPRESS_UI, no confirmation dialogs or source code control (SCC) checkout UI is displayed.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Show: