Data.Bind.ObjectScope.TBindSourceAdapter.CanDelete

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.Bind.ObjectScope.pas
Data.Bind.ObjectScope.hpp
Unit: Data.Bind.ObjectScope
Parent: TBindSourceAdapter

Delphi

property CanDelete: Boolean read GetCanDelete;

C++

__property bool CanDelete = {read=GetCanDelete, nodefault};

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.

See Also