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

CollectionBindingBehavior Enum

Contains values that specify which operations can be performed on a collection.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v21.1.dll

NuGet Package: DevExpress.Xpo

Declaration

[Flags]
public enum CollectionBindingBehavior

Members

Name Description
AllowNone

Specifies that items are not allowed to be added to or removed from a collection by a bound control.

AllowNew

Specifies that new items can be added to a collection by a bound control.

AllowRemove

Specifies that items can be removed from a collection by a bound control.

Remarks

A collection in XPO (the XPBaseCollection class descendant) implements the IBindingList interface, so it can be bound to a visual control (for instance, the XtraGrid). The control will interact with the XPCollection via this interface. Use the collection’s XPBaseCollection.BindingBehavior property of the CollectionBindingBehavior class to specify which operations on the collection are enabled for the bound control.

The XPBaseCollection.BindingBehavior property’s value determines the return values of the collection’s AllowNew and AllowRemove properties.

See Also