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

BootstrapGridViewTableCommandCellEventArgs(TableCell, Object, Int32, BootstrapGridViewCommandColumn, GridViewTableCommandCellType) Constructor

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

Namespace: DevExpress.Web.Bootstrap

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

Declaration

public BootstrapGridViewTableCommandCellEventArgs(
    TableCell cell,
    object keyValue,
    int visibleIndex,
    BootstrapGridViewCommandColumn column,
    GridViewTableCommandCellType cellType
)

Parameters

Name Type Description
cell TableCell

A TableCell control representing the HTML table cell.

keyValue Object

An object that uniquely identifies the command row.

visibleIndex Int32

The command row visible index.

column BootstrapGridViewCommandColumn

A BootstrapGridViewCommandColumn object that represents the command column. This value is assigned to the BootstrapGridViewTableCommandCellEventArgs.CommandColumn property.

cellType GridViewTableCommandCellType

A GridViewTableCommandCellType enumeration value that specifies the cell. This value is assigned to the ASPxGridViewTableCommandCellEventArgs.CommandCellType property.

Remarks

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

See Also