Data.Bind.ObjectScope.TBindSourceAdapter.CanInsert

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 CanInsert: Boolean read GetCanInsert;

C++

__property bool CanInsert = {read=GetCanInsert, nodefault};

Description

Determines whether the source adapter can insert data.

Read CanInsert to determine if the source adapter can insert data. This property uses the getter method GetCanInsert, that returns True if the source adapter can insert data or False otherwise.

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

See Also