Data.Bind.ObjectScope.TBindSourceAdapter.CanDelete
Delphi
property CanDelete: Boolean read GetCanDelete;
C++
__property bool CanDelete = {read=GetCanDelete, 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 delete data.
Read CanDelete to determine if the source adapter can delete data. This property uses the getter method GetCanDelete, that returns True
if the source adapter can delete data or False
otherwise.
- Note: The GetCanDelete method always returns
False
, so descendant classes must override this method.