Data.DB.TFieldDef.Attributes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Attributes: TFieldAttributes read FAttributes write SetAttributes default [];

C++

__property TFieldAttributes Attributes = {read=FAttributes, write=SetAttributes, default=0};

Properties

Type Visibility Source Unit Parent
property published
Data.DB.pas
Data.DB.hpp
Data.DB TFieldDef

Description

Identifies attributes of the field associated with the field def.

Attributes lists various attributes that are used to describe the role of the field that the TFieldDef object defines.

Note: In Delphi, faReadonly value has the same name as a constant is in the SysUtils unit. If both the SysUtils and the Db units are used in your source files, you must disambiguate by specifying the unit to qualify the use of faReadonly. That is,write Db.faReadonly. In C++, this is not a problem because the constant in the SysUtils unit differs in case (faReadOnly).

See Also