Data.Bind.ObjectScope.TBindSourceAdapter.CanModify

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 CanModify: Boolean read GetCanModify;

C++

__property bool CanModify = {read=GetCanModify, nodefault};

Description

Indicates if the source adapter can modify data.

Read CanModify to determine if the source adapter can modify data. This property uses the getter method GetCanModify, that returns True if the source adapter can modify data or False otherwise.

Note: The GetCanModify method always returns False, so descendant classes must override this method.

See Also