XPView.ListChanged Event
Occurs when the view’s settings are changed.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
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
The ListChanged event is raised, for instance, after the filter or sorting criteria has been changed. The event parameter’s ListChangeType property allows the way in which the view has been changed to be determined.
See Also