Skip to main content
Tab

ASPxGridViewSummaryDisplayTextEventArgs(ASPxSummaryItem, Object, String, Int32, Boolean) Constructor

Initializes a new instance of the ASPxGridViewSummaryDisplayTextEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxGridViewSummaryDisplayTextEventArgs(
    ASPxSummaryItem item,
    object value,
    string text,
    int visibleIndex,
    bool isGroupRow
)

Parameters

Name Type Description
item ASPxSummaryItem

An ASPxSummaryItem object that represents the summary item whose value is being processed. This value is assigned to the ASPxGridViewSummaryDisplayTextEventArgs.Item property.

value Object

An object that represents the summary item’s value. This value is assigned to the ASPxGridSummaryDisplayTextEventArgs.Value property.

text String

A String value that specifies the summary item’s display text. This value is assigned to the ASPxGridSummaryDisplayTextEventArgs.Text property.

visibleIndex Int32

A zero-based integer index that identifies the group row where the processed summary value resides. This value is assigned to the ASPxGridViewSummaryDisplayTextEventArgs.VisibleIndex property.

isGroupRow Boolean

true if a group summary value is being processed; false if a total summary value is being processed.

See Also