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

TcxEditDataBinding Class

Represents a connection of an editor to a data storage.

#Declaration

Delphi
TcxEditDataBinding = class(
    TPersistent
)

#Remarks

The TcxEditDataBinding class binds the TcxCustomEdit editor to the appropriate data storage. Editors can use the DataBinding property to read from or write to a dataset. Data-aware editors work with datasets while simple (non data-aware) editors do not. To write or read a value from a data storage write or read the value from the StoredValue property.

Note

You can create your own data-binding class which will supply data from a custom data storage. The new class must be derived from TcxEditDataBinding. To make an editor use a new data-binding object you have to override the GetDataBindingClass function declared in TcxCustomEdit.

#Inheritance

TObject
TPersistent
TcxEditDataBinding
See Also