'Declaration
Public Event CustomAggregate As EventHandler(Of CustomAggregateEventArgs)
public event EventHandler<CustomAggregateEventArgs> CustomAggregate
Event Data
The event handler receives an argument of type CustomAggregateEventArgs containing data related to this event. The following CustomAggregateEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
CellRange | CellRange affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
CellType | CellType of the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Column | Index of the column affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Panel | GridPanel that contains the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Result | Gets or sets the custom aggregate calculated over the range. |
Row | Index of the row affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
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