Skip to main content
.NET 8.0+

XPCollectionChangedType Enum

Lists the values that specify how the collection has been changed.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v24.2.dll

NuGet Package: DevExpress.Xpo

#Declaration

public enum XPCollectionChangedType

#Members

Name Description
BeforeAdd

An element is about to be added to the collection.

AfterAdd

A new element has been added to the collection.

BeforeRemove

An element is about to be removed from the collection.

AfterRemove

An element has been removed from the collection.

#Remarks

The values listed by this enumeration are used to set the XPCollectionChangedEventArgs.CollectionChangedType property.

See Also