TVN_ENDLABELEDIT

This notification message notifies a tree view control’s parent window about the end of label editing for an item. It is sent in the form of a WM_NOTIFY message.

At a Glance

Header file: Commctrl.h
Windows CE versions: 1.0 and later

Syntax

  1. TVN_ENDLABELEDIT ptvdi = (TV_DISPINFO FAR *) lParam

Parameters

ptvdi

Pointer to an NMTVDISPINFO structure. The item member of this structure is a TVITEM structure whose hItem, lParam, and pszText members contain valid information about the item that was edited.

If label editing was canceled, the pszText member of the TVITEM structure is NULL; otherwise, pszText is the address of the edited text.

Return Values

If the pszText member is non-NULL, return TRUE to set the item's label to the edited text. Return FALSE to reject the edited text and revert to the original label.

Remarks

If the pszText member is NULL, the return value is ignored.

See Also

NM_TREEVIEW, TV_ITEM, TVM_EDITLABEL, TVN_BEGINLABELEDIT, WM_NOTIFY