Data.DB.TDataSet.AggFields

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AggFields: TFields read FAggFields;

C++

__property TFields* AggFields = {read=FAggFields};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Contains any aggregate fields.

Some TDataSet descendants, such as TClientDataSet, support aggregate fields. Aggregate fields summarize data over groups of records from the dataset (as opposed to calculated fields, which can only summarize data over the fields of a single record). AggFields is a collection of all aggregate fields that are supported by the dataset.

Note: The Fields property is a collection of all the dataset's fields that are not aggregate fields. Thus, AggFields and Fields are mutually exclusive collections of the dataset's fields. These two properties contain all of the dataset's fields between them.

See Also