Skip to main content

CustomSummaryEventArgs(Int32, Object, Object, Int32, CustomSummaryProcess, Object, Int32) Constructor

Creates a new CustomSummaryEventArgs object.

Namespace: DevExpress.Data

Assembly: DevExpress.Core.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public CustomSummaryEventArgs(
    int controllerRow,
    object totalValue,
    object fieldValue,
    int groupRowHandle,
    CustomSummaryProcess summaryProcess,
    object item,
    int groupLevel
)

Parameters

Name Type Description
controllerRow Int32

An integer value identifying the processed row by its handle. This value is assigned to the CustomSummaryEventArgs.RowHandle property.

totalValue Object

An object representing the custom calculated summary value. This value is assigned to the CustomSummaryEventArgs.TotalValue property.

fieldValue Object

An object representing the currently processed field value. This value is assigned to the CustomSummaryEventArgs.FieldValue property.

groupRowHandle Int32

An integer value identifying the group row whose child data rows are involved in summary calculation. This value is assigned to the CustomSummaryEventArgs.GroupRowHandle property.

summaryProcess CustomSummaryProcess

A CustomSummaryProcess enumeration value identifying the current calculation stage. This value is assigned to the CustomSummaryEventArgs.SummaryProcess property.

item Object

An object representing the summary item whose value is being calculated. This value is assigned to the CustomSummaryEventArgs.Item property.

groupLevel Int32

An integer value indicating the nested group level of the processed row. This value is assigned to the CustomSummaryEventArgs.GroupLevel property.

See Also