Data.Bind.ObjectScope.TListAdapterOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TListAdapterOption = (loptAllowInsert, loptAllowDelete, loptAllowModify,
loptAllowApplyUpdates, loptAllowCancelUpdates);

C++

enum DECLSPEC_DENUM TListAdapterOption : unsigned char { loptAllowInsert, loptAllowDelete, loptAllowModify, loptAllowApplyUpdates, loptAllowCancelUpdates };

Properties

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

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.

See also