Data.Bind.ObjectScope.TBindSourceAdapter.CanCancelUpdates
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp
| |
Unit: Data.Bind.ObjectScope | |
Parent: TBindSourceAdapter |
Delphi
property CanCancelUpdates: Boolean read GetCanCancelUpdates;
C++
__property bool CanCancelUpdates = {read=GetCanCancelUpdates, nodefault};
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.