[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Kind of field
Source position: db.pas line 229
type TFieldKind = ( |
||
fkData, |
|
Field represents actual data in the underlying data structure. |
fkCalculated, |
|
The field is calculated on the fly. |
fkLookup, |
|
The field is a lookup field. |
fkInternalCalc |
|
Field is calculated but stored in an underlying buffer. |
); |
TFieldKind indicates the type of a TField instance. Besides TField instances that represent fields present in the underlying data records, there can also be calculated or lookup fields. To distinguish between these kind of fields, TFieldKind is introduced.
|
The kind of field. |