API:Data.Bind.ObjectScope.TCustomDataGeneratorAdapter.GetCanInsert
[–] Properties | |
---|---|
Type: function | |
Visibility: protected | |
Source: Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp
| |
Unit: Data.Bind.ObjectScope | |
Parent: TCustomDataGeneratorAdapter |
Delphi
function GetCanInsert: Boolean; override;
C++
virtual bool __fastcall GetCanInsert();
Description
Getter method for the CanInsert property.
Data.Bind.ObjectScope.TCustomDataGeneratorAdapter.GetCanInsert inherits from Data.Bind.ObjectScope.TBindSourceAdapter.GetCanInsert. All content below this line refers to Data.Bind.ObjectScope.TBindSourceAdapter.GetCanInsert.
Getter method for the CanInsert property.
GetCanInsert returns whether the source adapter can insert data.
- Note: This method always returns
False
, so descendant classes must override the GetCanInsert method to returnTrue
if the source adapter can insert data orFalse
otherwise.