Data.Bind.ObjectScope.TBindSourceAdapter.CanInsert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CanInsert: Boolean read GetCanInsert;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Data.Bind.ObjectScope.pas
Data.Bind.ObjectScope.hpp
Data.Bind.ObjectScope TBindSourceAdapter

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