Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomShellTreeView.OnEdited Event

In This Article

Enables you to override end-user changes to shell item captions.

#Declaration

Delphi
property OnEdited: TTVEditedEvent read; write;

#Remarks

This event occurs after an end-user has finished editing a shell node’s text.

Sender specifies the shell tree view that raised the event.

Node specifies the tree node that corresponds to the shell item whose caption has been edited.

S specifies the new item caption (node text). You can pass your caption via this parameter to override the user input.

You can prohibit end-users from renaming an item via the ReadOnly property. To dynamically prohibit caption editing for specific shell items, handle the OnEditing event.

See Also