Occurs when the grid needs to calculate a custom aggregate.

Namespace:  C1.Phone.FlexGrid
Assembly:  C1.Phone.FlexGrid (in C1.Phone.FlexGrid.dll)

Syntax

C#
public event EventHandler<CustomAggregateEventArgs> CustomAggregate
Visual Basic
Public Event CustomAggregate As EventHandler(Of CustomAggregateEventArgs)

Remarks

The event arguments contain a range that is to be aggregated; the event handler should calculate the custom aggregate and assign the value to the Result parameter.

See Also