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

BootstrapGridViewCommandButtonEventArgs(BootstrapGridViewCommandColumn, ColumnCommandButtonType, Int32, Boolean) Constructor

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

Namespace: DevExpress.Web.Bootstrap

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

Declaration

public BootstrapGridViewCommandButtonEventArgs(
    BootstrapGridViewCommandColumn column,
    ColumnCommandButtonType buttonType,
    int visibleIndex,
    bool isEditingRow
)

Parameters

Name Type Description
column BootstrapGridViewCommandColumn

A BootstrapGridViewCommandColumn object that represents the command column containing the processed command button. This value is assigned to the BootstrapGridViewCommandButtonEventArgs.Column property.

buttonType ColumnCommandButtonType

A ColumnCommandButtonType enumeration value identifying the type of the processed command button.

visibleIndex Int32

An integer value that specifies the visible index of a row which contains the processed command button. This value is assigned to the ASPxGridCommandButtonEventArgs.VisibleIndex property.

isEditingRow Boolean

true if the processed command button is displayed within the edited row; otherwise, false.

Remarks

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

See Also