API:Data.DB.TDataSetField

From RAD Studio API Documentation
Jump to: navigation, search

Data.DB.TObjectFieldData.DB.TFieldSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTDataSetField

Delphi

TDataSetField = class(TObjectField)

C++

class PASCALIMPLEMENTATION TDataSetField : public TObjectField

Properties

Type Visibility Source Unit Parent
class public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

Description

TObjectField is the common ancestor of TADTField, TArrayField, TDataSetField, and TReferenceField components in a dataset.

Data.DB.TDataSetField inherits from Data.DB.TObjectField. All content below this line refers to Data.DB.TObjectField.

TObjectField is the common ancestor of TADTField, TArrayField, TDataSetField, and TReferenceField components in a dataset.

TObjectField encapsulates the fundamental behavior common to fields that are a composite of simpler types. These include ADT fields and array fields, which are built up of subfields, and dataset fields and reference fields, which refer to another dataset. TObjectField introduces the Fields property and the FieldValues property for accessing the subfields that make up the composite (or that reside in the dataset that is the field's value).

Do not create instances of TObjectField. It is intended only as a base class.

See Also