Data.Bind.ObjectScope.TBindSourceAdapter.CanCancelUpdates
Delphi
property CanCancelUpdates: Boolean read GetCanCancelUpdates;
C++
__property bool CanCancelUpdates = {read=GetCanCancelUpdates, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp |
Data.Bind.ObjectScope | TBindSourceAdapter |
Description
Specifies whether the source adapter can cancel updates.
Read CanCancelUpdates to determine if the source adapter can cancel updates. This property uses the getter method GetCanCancelUpdates, that returns True
if the source adapter can cancel updates or False
otherwise.
- Note: The GetCanCancelUpdates method always returns
False
, so descendant classes must override this method.