Skip to main content
.NET 6.0+

XPDataView.ListChanged Event

Occurs when the data view’s settings are changed.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public event ListChangedEventHandler ListChanged

Event Data

The ListChanged event's data class is ListChangedEventArgs. The following properties provide information specific to this event:

Property Description
ListChangedType Gets the type of change.
NewIndex Gets the index of the item affected by the change.
OldIndex Gets the old index of an item that has been moved.
PropertyDescriptor Gets the PropertyDescriptor that was added, changed, or deleted.

Remarks

This event occurs, for instance, after the filter or sorting criteria has been modified. The event parameter’s ListChangeType property provides information on the changes that have been made to the data view.

See Also