Skip to main content

TcxCustomDataSummaryItem.Kind Property

Specifies the type of the summary to calculate.

Declaration

property Kind: TcxSummaryKind read; write; default skNone;

Property Value

Type Default
TcxSummaryKind skNone

Remarks

The Kind property defines the type of the summary to calculate. The following table lists possible summary kinds.

Value Meaning
skNone Summary is not used.
skSum Sums item values within a group (for group summaries) or against all records (for footer summaries).
skMin Retrieves the minimum value among item values within a group (for group summaries) or against all records (for footer summaries).
skMax Retrieves the maximum value among item values within a group (for group summaries) or against all records (for footer summaries).
skCount Displays the number of records within a group (for group summaries) or against all records (for footer summaries).
skAverage Calculates the average item value within a group (for group summaries) or against all records (for footer summaries).

The default value of the Kind property is skNone.

See Also