Skip to main content
A newer version of this page is available.
Tab

ASPxGridViewTableRowEventArgs(TableRow, Object, Int32, GridViewRowType, ASPxGridView) Constructor

Initializes a new instance of the ASPxGridViewTableRowEventArgs class with specified settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridViewTableRowEventArgs(
    TableRow row,
    object keyValue,
    int visibleIndex,
    GridViewRowType rowType,
    ASPxGridView grid
)

Parameters

Name Type Description
row TableRow

A TableRow object that is the processed row.

keyValue Object

An object that uniquely identifies the row. This value is assigned to the ASPxGridViewTableRowEventArgs.KeyValue property.

visibleIndex Int32

The row visible index.

rowType GridViewRowType

One of the GridViewRowType enumeration values that is a row type.

grid ASPxGridView

An ASPxGridView object that owns the current object.

See Also