TcxEditDataBinding Class
In This Article
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 Tcx
. To make an editor use a new data-binding object you have to override the Get
#Inheritance
TObject
TPersistent
TcxEditDataBinding
See Also