RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DB.TFieldAttribute Enumeration

TFieldAttribute and TFieldAttributes indicate various attributes of a field.

Pascal
TFieldAttribute = (
  faHiddenCol,
  faReadonly,
  faRequired,
  faLink,
  faUnNamed,
  faFixed
);
C++
enum TFieldAttribute {
  faHiddenCol,
  faReadonly,
  faRequired,
  faLink,
  faUnNamed,
  faFixed
};

DB

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) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!