Skip to main content

CustomSummaryEventArgs.FieldValue Property

Gets the processed field value.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v14.2.dll

#Declaration

public object FieldValue { get; }

#Property Value

Type Description
Object

An object, representing the processed field value.

#Remarks

Default summary calculation algorithms process values that belong to a field, specified by a summary item. When calculating a summary value manually, this column's values are passed to corresponding event handlers via the FieldValue property. Use this property to access the processed value immediately, and update the CustomSummaryEventArgs.TotalValue property value accordingly.

To obtain the values of other fields in the processed row, use the CustomSummaryEventArgs.GetValuemethod. This can be useful when a summary value is calculated against multiple fields. The processed row is identified by its handle, returned by the CustomSummaryEventArgs.RowHandle property.

See Also