Skip to main content
A newer version of this page is available. .

ListEditor.ProcessSelectedItem Event

Occurs after an object is selected in the List Editor‘s control and an end-user presses Enter or double-clicks the object.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public event EventHandler ProcessSelectedItem

Event Data

The ProcessSelectedItem event's data class is EventArgs.

Remarks

Do not use this event to perform a custom Action when an object is double-clicked in the List Editor’s control. This event is designed for internal needs. Instead, access the ListViewProcessCurrentObjectController and handle its ListViewProcessCurrentObjectController.CustomProcessSelectedItem event. To access this Controller, use the GetController<ControllerType> method. For details, refer to the How to: Replace a List View’s Default Action topic.

See Also