TFieldAttribute and TFieldAttributes indicate various attributes of a field.
TFieldAttribute = ( faHiddenCol, faReadonly, faRequired, faLink, faUnNamed, faFixed );
enum TFieldAttribute { faHiddenCol, faReadonly, faRequired, faLink, faUnNamed, faFixed };
TFieldAttributes is a set that describes the attributes of a physical field in an underlying database table. It can contain zero or more of the following TFieldAttribute values:
|
Value |
Meaning |
|
faHiddenCol |
Internal flag for hidden columns |
|
faReadonly |
Indicates whether the physical field in the underlying table is read-only. |
|
faRequired |
Indicates whether a value for the physical field in the underlying table is required. |
|
faLink |
Internal flag for nested datasets. |
|
faUnNamed |
Internal use only. Indicates a TObjectField in a nested table that has no name associated with it. |
|
faFixed |
Indicates that the field has a fixed size. |
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|