Represents the method that will handle the GroupAggregate event.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public delegate void C1GroupAggregateEventHandler(
	Object sender,
	C1GroupTextEventArgs e
)
Visual Basic
Public Delegate Sub C1GroupAggregateEventHandler ( _
	sender As Object, _
	e As C1GroupTextEventArgs _
)

Parameters

sender
Type: System..::..Object
The source of the event.
e
Type: C1.Web.UI.Controls.C1GridView..::..C1GroupTextEventArgs
A C1GroupTextEventArgs object that contains the event data.

Remarks

Occurs when the Aggregate property has been set to Custom. This allows the customization of aggregate cell contents for text displayed in the group header or footer.

See Also