Skip to main content

BootstrapGridViewTableDataCellEventArgs(TableCell, Object, BootstrapGridView, Int32, BootstrapGridViewDataColumn) Constructor

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

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public BootstrapGridViewTableDataCellEventArgs(
    TableCell cell,
    object keyValue,
    BootstrapGridView grid,
    int visibleIndex,
    BootstrapGridViewDataColumn column
)

Parameters

Name Type Description
cell TableCell

A TableCell control representing the HTML table cell.

keyValue Object

An object that uniquely identifies the row.

grid BootstrapGridView

An BootstrapGridView object that owns the current object.

visibleIndex Int32

The row visible index. This value is assigned to the ASPxGridViewTableRowEventArgs.KeyValue property.

column BootstrapGridViewDataColumn

A BootstrapGridViewDataColumn object that represents the column.

Remarks

Instances of the BootstrapGridViewTableDataCellEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also