Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPCollectionChangedType Enum

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

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v20.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