XPBindingSource.BindingBehavior Property
In This Article
Defines operations the bound control can perform with the data source.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
[DefaultValue(CollectionBindingBehavior.AllowNew | CollectionBindingBehavior.AllowRemove)]
public CollectionBindingBehavior BindingBehavior { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Collection |
Allow |
A Collection |
Available values:
Name | Description |
---|---|
Allow |
Specifies that items are not allowed to be added to or removed from a collection by a bound control. |
Allow |
Specifies that new items can be added to a collection by a bound control. |
Allow |
Specifies that items can be removed from a collection by a bound control. |
See Also