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

BootstrapGridViewTableFooterCellEventArgs(BootstrapGridView, GridViewColumn, Int32, TableCell) Constructor

Initializes a new instance of the BootstrapGridViewTableFooterCellEventArgs class.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

public BootstrapGridViewTableFooterCellEventArgs(
    BootstrapGridView grid,
    GridViewColumn column,
    int visibleIndex,
    TableCell cell
)

Parameters

Name Type Description
grid BootstrapGridView

An BootstrapGridView object that represents the processed footer cell’s owner grid.

column GridViewColumn

A GridViewColumn descendant that represents the grid column.

visibleIndex Int32

An integer value that specifies the row’s visible index. -1 if the processed cell belongs to the Total Footer.

cell TableCell

A TableCell object that represents the processed footer cell.

Remarks

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

See Also