CollectionBindingBehavior Enum
Contains values that specify which operations can be performed on a collection.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
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.