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

BootstrapGridViewColumnDataEventArgs(BootstrapGridViewDataColumn, Int32, Object, Boolean) Constructor

Initializes a new instance of the BootstrapGridViewColumnDataEventArgs class.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

public BootstrapGridViewColumnDataEventArgs(
    BootstrapGridViewDataColumn column,
    int listSourceRow,
    object value,
    bool isGetAction
)

Parameters

Name Type Description
column BootstrapGridViewDataColumn

A BootstrapGridViewDataColumn object that represents the unbound column. This value is assigned to the BootstrapGridViewColumnDataEventArgs.Column property.

listSourceRow Int32

An integer value that specifies the row’s index in the data source. This value is assigned to the ASPxGridColumnDataEventArgs.ListSourceRowIndex property.

value Object

An object that represents the currently processed cell’s value. This value is assigned to the ASPxGridColumnDataEventArgs.Value property.

isGetAction Boolean

true if you need to provide data for the currently processed cell; otherwise, false. This value is assigned to the ASPxGridColumnDataEventArgs.IsGetData property.

Remarks

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

See Also