Data.Bind.ObjectScope.TListAdapterOption
| [–] Properties | |
|---|---|
| Type: enum | |
| Visibility: public | |
| Source: Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp
| |
| Unit: Data.Bind.ObjectScope | |
| Parent: Data.Bind.ObjectScope | |
Delphi
TListAdapterOption = (loptAllowInsert, loptAllowDelete, loptAllowModify,
loptAllowApplyUpdates, loptAllowCancelUpdates);
C++
enum DECLSPEC_DENUM TListAdapterOption : unsigned char { loptAllowInsert, loptAllowDelete, loptAllowModify, loptAllowApplyUpdates, loptAllowCancelUpdates };
Description
TListAdapterOption specifies allowed operations on adapter data source.
The following table summarizes its possible values:
| Parameter | Description |
|---|---|
| loptAllowInsert | Allows inserting a new item into the data source. |
| loptAllowDelete | Allows deleting an existing item from the data source. |
| loptAllowModify | Allows modifying an existing item in the data source. |
| loptAllowApplyUpdates | Allows applying updates to the data source. |
| loptAllowCancelUpdates | Allow canceling updates in data source. |