Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomDBDataBinding Class

Serves as the base for objects used to bind a control to a dataset field.

#Declaration

Delphi
TcxCustomDBDataBinding = class(
    TcxCustomDataBinding
)

#Remarks

Data-aware controls are bound to data by means of specially designed objects. These objects manage the interchange of data between the control and the source. The methods required by such objects are declared by the TcxCustomDataBinding class. The TcxCustomDBDataBinding object overrides these methods to implement this binding.

The TcxCustomDBDataBinding class is the ancestor of the TcxDBDataBinding object. The latter is used to bind the TcxDBListBox control to a dataset field. It can be accessed via the DataBinding property of the list box.

The TcxCustomDBDataBinding class implements all the functionality required to perform data binding. Its descendant simply publishes the DataSource and DataField properties.

#Inheritance

See Also