IBX.IBCustomDataSet.TLiveModes
Delphi
TLiveModes = Set of TLiveMode;
C++
typedef System::Set<TLiveMode, TLiveMode::lmInsert, TLiveMode::lmRefresh> TLiveModes;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | IBX.IBCustomDataSet.pas IBX.IBCustomDataSet.hpp |
IBX.IBCustomDataSet | IBX.IBCustomDataSet |
Description
TLiveModes and TLiveModes indicate what operations an application can perform on an IBX dataset.
TLiveModes is a set of TLiveMode values. The following table lists the possible values:
Value | Meaning |
---|---|
lmInsert |
The application can insert records. |
lmModify |
The application can modify existing records. |
lmDelete |
The application can delete records. |
lmRefresh |
The application can refresh the records in the dataset. |