The TreeView_DeleteItem macro removes an item from a tree-view control. You can use this macro, the TreeView_DeleteAllItems macro, or explicitly send the TVM_DELETEITEM message.
BOOL TreeView_DeleteItem(
hwnd, | |
hitem | |
); |
Parameters
hwnd
Handle to the tree-view control.
hitem
Handle to the item to delete. If hitem is the TVI_ROOT value, all items are deleted from the tree-view control.
Return Values
Returns TRUE if successful or FALSE otherwise.
Remarks
If the item label is being edited, the edit operation is canceled and the parent window receives the TVN_ENDLABELEDIT notification message. The parent window receives a TVN_DELETEITEM notification message when the item is removed.
See Also
TreeView_DeleteAllItems, TVM_DELETEITEM, TVN_DELETEITEM, TVN_ENDLABELEDIT