TFieldKind indicates what type of information a field component represents.
TFieldKind = ( fkData, fkCalculated, fkLookup, fkInternalCalc, fkAggregate );
enum TFieldKind { fkData, fkCalculated, fkLookup, fkInternalCalc, fkAggregate };
TFieldKind can take one of the following values:
|
Value |
Description |
|
fkData |
Field represents a physical field in a database table |
|
fkCalculated |
Field is calculated in an OnCalcFields event handler |
|
fkLookup |
Field is a lookup field. (Not implemented for fields on unidirectional datasets) |
|
fkInternalCalc |
Field is calculated but values are stored in the dataset. |
|
fkAggregate |
Field represents a maintained aggregate in a client dataset. |
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|