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

TcxCustomShellListView.OnEdited Event

In This Article

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

#Declaration

Delphi
property OnEdited: TLVEditedEvent read; write;

#Remarks

This event occurs after an end-user has finished editing the item caption.

Sender specifies the shell list view that raised the event.

Item specifies the list item that corresponds to the shell list item whose caption has been edited.

S specifies the new item caption. 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